' 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 & "
  1. Zum 15.12. in die Wintermischung 2
  2. " & gb.Lf & "
  3. Zum 15.2. in die Fellwechselmischung Frühjahr
  4. " & gb.Lf & "
  5. Zum 15.4. in die Sommermischung
  6. " & gb.Lf & "
  7. Zum 15.8. in die Fellwechselmischung Herbst
  8. " & gb.Lf & "
  9. Zum 15.10. in die Wintermischung 1
  10. " & gb.Lf & "
" Expected = "
    " & gb.Lf & Trim("
  1. Zum 15.12. in die Wintermischung 2
  2. ") & gb.Lf & Trim("
  3. Zum 15.2. in die Fellwechselmischung Frühjahr
  4. ") & gb.Lf & Trim("
  5. Zum 15.4. in die Sommermischung
  6. ") & gb.Lf & Trim("
  7. Zum 15.8. in die Fellwechselmischung Herbst
  8. ") & gb.Lf & Trim("
  9. Zum 15.10. in die Wintermischung 1
  10. ") & gb.Lf & "
" Assert.Equals(Got, Expected, "Tests the typo of Expected and Got in diagnosis. Must fail.") End