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

Last change on this file since 355 was 355, checked in by イグトランス (egtra), 17 years ago

FormatIntegerDを実装。
UnitTestの失敗時の表示を目立つようにした。
ArrayListを名前空間System.Collectionsに入れた。

File size: 693 bytes
RevLine 
[236]1' SimpleTestCase.ab
2
[221]3#console
[355]4
5Dim hStdOut = _System_hConsoleOut
6
7Dim csbi As CONSOLE_SCREEN_BUFFER_INFO
8GetConsoleScreenBufferInfo(hStdOut, csbi)
9
[221]10#include "SimpleTestCase.idx"
11
[222]12Function UnitTest( msg As String, isSuccessful As Boolean )
13 Dim resultStr As String
14 If isSuccessful Then
[355]15 resultStr = Ex"OK "
[222]16 Else
[236]17 resultStr = Ex"FAILURE!"
[222]18 End If
[236]19
[355]20 If Not isSuccessful Then
21 SetConsoleTextAttribute(hStdOut, BACKGROUND_RED Or BACKGROUND_GREEN Or BACKGROUND_INTENSITY)
22 End If
23
24 Print resultStr; msg
25
26 If Not isSuccessful Then
27 SetConsoleTextAttribute(hStdOut, csbi.wAttributes)
28 End If
[222]29End Function
[221]30
31Print "Please enter any key"
32Dim a As Long
33Input a
Note: See TracBrowser for help on using the repository browser.