gambas-source-code/.src/TestSuite/ITestCase.class
Christof Thalhofer bca845af25 fewer exports
2016-09-24 22:03:36 +02:00

22 lines
540 B
Text

' Gambas class file
Inherits ITest
' 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