' Gambas test file
Public Sub TestNoteGotAndExpected()
'tests the typo of Expected and Got in diagnosis
'This test must fail to see what happens
Dim Expected, Got As String
Test.Plan(1)
Got = "
" & gb.Lf &
" - Zum 15.12. in die Wintermischung 2
" & gb.Lf &
" - Zum 15.2. in die Fellwechselmischung Frühjahr
" & gb.Lf &
" - Zum 15.4. in die Sommermischung
" & gb.Lf &
" - Zum 15.8. in die Fellwechselmischung Herbst
" & gb.Lf &
" - Zum 15.10. in die Wintermischung 1
" & gb.Lf &
"
"
Expected = "" & gb.Lf &
Trim(" - Zum 15.12. in die Wintermischung 2
") & gb.Lf &
Trim(" - Zum 15.2. in die Fellwechselmischung Frühjahr
") & gb.Lf &
Trim(" - Zum 15.4. in die Sommermischung
") & gb.Lf &
Trim(" - Zum 15.8. in die Fellwechselmischung Herbst
") & gb.Lf &
Trim(" - Zum 15.10. in die Wintermischung 1
") & gb.Lf &
"
"
Assert.Equals(Got, Expected, "Tests the typo of Expected and Got in diagnosis. Must fail.")
End