Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Test 'switch'

Oct
364
17
This is for enabling or disabling individual lines of test code. You would comment out one of the ALIAS definitions.

ALIAS TEST_CODE REM
TEST_CODE Dir

(The line does nothing because it begins with REM.)

ALIAS TEST_CODE IF 1=1
TEST_CODE Dir

The command works.
 
Nerdy quibble: For syntactic correctness, there should be two equals signs in the IF condition.
 
Back
Top