< Summary - Igor Pro Universal Testing Framework

Information
Class: procedures.igortest-hooks-proto
Assembly: procedures
File(s): /builds/mirror/igortest/procedures/igortest-hooks-proto.ipf
Tag: 74147b3
Line coverage
N/A
Covered lines: 0
Uncovered lines: 0
Coverable lines: 0
Total lines: 38
Line coverage: N/A
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf => TEST_BEGIN()100%0100%
/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf => TEST_END()100%0100%
/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf => TEST_SUITE_BEGIN()100%0100%
/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf => TEST_SUITE_END()100%0100%
/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf => TEST_CASE_BEGIN()100%0100%
/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf => TEST_CASE_END()100%0100%

File(s)

/builds/mirror/igortest/procedures/igortest-hooks-proto.ipf

#LineLine coverage
 1#pragma rtGlobals=3
 2#pragma rtFunctionErrors=1
 3#pragma version=1.10
 4#pragma TextEncoding="UTF-8"
 5#pragma ModuleName=IUTF_Hooks_Proto
 6
 7// These functions are included for compatibility only
 8// and have no functionality. Do NOT call this functions in future
 9// test setups to extend a test run. The functions may be removed in a later version.
 10
 11// Instead:
 12// To insert user code into a test run user the _OVERRIDE functions
 13// such as TEST_BEGIN_OVERRIDE(name)
 14// See documentation refman.pdf for details.
 15
 16Function TEST_BEGIN(name)
 17  string name
 18End
 19
 20Function TEST_END(name)
 21  string name
 22End
 23
 24Function TEST_SUITE_BEGIN(testSuite)
 25  string testSuite
 26End
 27
 28Function TEST_SUITE_END(testSuite)
 29  string testSuite
 30End
 31
 32Function TEST_CASE_BEGIN(testCase)
 33  string testCase
 34End
 35
 36Function TEST_CASE_END(testCase)
 37  string testCase
 38End

Methods/Properties