gambas-source-code/main/lib/test/gb.test/.src/TestMyself/TSummary.test
Christof Thalhofer fc4525708a gb.test rename test modules
[GB.TEST]
* OPT: rename testmodules and methods in them, get rid of such a lot "Test"
2020-05-26 20:45:18 +02:00

37 lines
582 B
Text

' Gambas test file
''' This test can be executed to test a summary. Will fail.
'' Will succeed
Public Sub DoSomeAsserts()
Assert.Pass("Bla 1")
Assert.Pass("Bla 2")
Assert.Pass("Bla 3")
End
'' Will succeed
Public Sub DoSkip()
Assert.Skip("Report that a test is skipped.")
End
'' Will succeed
Public Sub DoTodo()
Assert.Todo("Because not ok yet.")
Assert.Ok(False, "Must be ok.")
Assert.Todo("This Todo seems not to be removed yet.")
Assert.Ok(True, "Must be ok.")
End
'' Will fail
Public Sub DoOneFailure()
Assert.Ok(False, "Intentional failure")
End