gambas-source-code/comp/src/gb.test/.src/TestMyself/TestFailures.class

18 lines
327 B
Text
Raw Normal View History

' Gambas class file
Inherits UnitTest
Public Const ThisIsAnUnitTestSelfTest As Boolean = True
Public Sub TestStringFailure()
Assert.EqualsString("Lisa", "Paul", "Intentional String failure. Ok if not ok.")
End
Public Sub TestLongFailure()
Assert.EqualsLong(2, 3, "Intentional Long failure. Ok if not ok.")
End