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

23 lines
540 B
Text
Raw Normal View History

2015-01-29 15:02:26 +01:00
' Gambas class file
Inherits ITest
2016-09-19 23:42:46 +02:00
2015-01-29 15:02:26 +01:00
' 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
2016-09-21 10:25:39 +02:00
Property Read Container As ATestContainer
2015-01-29 15:02:26 +01:00
2016-09-21 10:25:39 +02:00
Private Function Container_Read() As ATestContainer
2015-01-29 15:02:26 +01:00
End
Private Function Name_Read() As String
2015-01-29 15:02:26 +01:00
End