gambas-source-code/.src/TestSuite/ITest.class
2016-09-20 18:15:58 +02:00

21 lines
461 B
Text

' Gambas class file
Export
' Unit Test for Gambas
'
' Fork from http://comunit.sourceforge.net/
' This interface identifies all classes that can be used by the UnitRunner
' in order to execute test cases.
' Runs the test and collects the results in the TestResult parameter
Public Sub Run(Result As TestResult, Optional ShowDebug As Boolean)
End Sub
' Number of test cases contained in this test
Public Function CountTestCases() As Integer
End Function