mirror of
https://github.com/reactos/ahk_tests.git
synced 2024-12-02 16:46:21 +00:00
[AHK_Helper_Function]
Add TestsOK() and TestsFailed() procedures. svn path=/trunk/ahk_tests/; revision=1470
This commit is contained in:
parent
ed80daa18f
commit
6f9aecbfca
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user