gambas-source-code/main/lib/test/gb.test/.src/TestMe.module
Christof Thalhofer fc4525708a gb.test rename test modules
[GB.TEST]
* OPT: rename testmodules and methods in them, get rid of such a lot "Test"
2020-05-26 20:45:18 +02:00

20 lines
540 B
Text

' Gambas module file
' Play around for development ...
Public Sub Main()
' ------------------------------------------------- Interpreter Interface
' Dim testclass As Class
'
' testclass = Class.Load("TestElse")
' Test._Add(testclass, "TestElse.TestNote")
' testclass = Class.Load("TestAllAsserts")
' Test._Add(testclass, "TestAllAsserts")
' ' these are already contained, do not increase the numbers of tests!
' Test._Add(testclass, "TestAllAsserts.TestNote;TestLike")
'
' Test._Run()
End