gb.test: Minimal change to test gitlab notification

This commit is contained in:
Christof Thalhofer 2020-02-10 13:58:51 +01:00
parent d9fff7c380
commit 2fbfa495fc

View file

@ -1,6 +1,7 @@
' Gambas class file
Inherits UnitTest
''' Tests all Asserts
' Signal, that this is a selftest
Public Const ThisIsAnUnitTestSelfTest As Boolean = True
@ -11,7 +12,6 @@ Public Sub _new()
End
Public Sub TestAssert()
Assert.True(True, "Testing True")
@ -108,4 +108,4 @@ Public Sub TestNote()
Assert.Note("The next note is Null and it should complain about it:")
Assert.Note(Null)
End
End