2015-01-29 15:02:26 +01:00
|
|
|
' Gambas class file
|
|
|
|
|
2016-09-19 23:42:46 +02:00
|
|
|
Export
|
|
|
|
|
2015-01-29 15:02:26 +01:00
|
|
|
' Unit Test for Gambas
|
|
|
|
'
|
|
|
|
' Fork from http://comunit.sourceforge.net/
|
|
|
|
|
2016-09-21 13:02:48 +02:00
|
|
|
' This interface identifies all classes that can be used by the UnitTest
|
2015-01-29 15:02:26 +01:00
|
|
|
' in order to execute test cases.
|
|
|
|
|
|
|
|
' Runs the test and collects the results in the TestResult parameter
|
2016-09-19 23:42:46 +02:00
|
|
|
|
2016-09-20 18:15:58 +02:00
|
|
|
Public Sub Run(Result As TestResult, Optional ShowDebug As Boolean)
|
2015-01-29 15:02:26 +01:00
|
|
|
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
' Number of test cases contained in this test
|
|
|
|
Public Function CountTestCases() As Integer
|
|
|
|
|
|
|
|
End Function
|