gambas-source-code/.src/TestSuite/ITestCase.class
2016-09-22 10:29:42 +02:00

23 lines
547 B
Text

' Gambas class file
Inherits ITest
Export
' This interface is implemented by the TestCase class. It represents an
' individual test case by holding a reference to the name of the test case
' (ie. the method containing the test code) and to the test container
' that contains the test method to execute.
' Name of the test case
Property Read Name As String
' Test container that the test case uses
Property Read Container As ATestContainer
Private Function Container_Read() As ATestContainer
End
Private Function Name_Read() As String
End