gambas-source-code/.src/ITestCase.class

21 lines
532 B
Text
Raw Normal View History

2015-01-29 15:02:26 +01:00
' Gambas class file
' 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 TestContainer As ITestContainer
Private Function TestContainer_Read() As ITestContainer
End
Private Function Name_Read() As String
End