[AHK_Helper_Function]

Add TestsOK() and TestsFailed() procedures.

svn path=/trunk/ahk_tests/; revision=1470
This commit is contained in:
Edijs Kolesnikovičs 2012-08-02 11:08:07 +00:00
parent ed80daa18f
commit 6f9aecbfca

View File

@ -21,6 +21,19 @@
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
TestsOK()
{
global TestsOK
TestsOK++
bContinue := true
}
TestsFailed()
{
global TestsFailed
TestsFailed++
bContinue := false
}
LeftClickControl(ControlName)
{