source: trunk/TestCase/SimpleTestCase/SimpleTestCase.ab@ 300

Last change on this file since 300 was 236, checked in by 森崎 孝明, 17 years ago

スペルミスを修正
(コミットのテストも兼ねて)

File size: 339 bytes
Line 
1' SimpleTestCase.ab
2
3#console
4#include "SimpleTestCase.idx"
5
6Function UnitTest( msg As String, isSuccessful As Boolean )
7 Dim resultStr As String
8 If isSuccessful Then
9 resultStr = Ex"OK\t"
10 Else
11 resultStr = Ex"FAILURE!"
12 End If
13
14 Print resultStr, msg
15End Function
16
17Print "Please enter any key"
18Dim a As Long
19Input a
Note: See TracBrowser for help on using the repository browser.