diff options
author | Peter Andersson <[email protected]> | 2011-09-05 19:51:59 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-09-23 12:24:55 +0200 |
commit | e91ba727f534553a34c05ad54247a0485e2429ff (patch) | |
tree | 79759dfa3c1d4af4297975ecdcc8d40288a2d507 /lib/common_test/doc/src | |
parent | 6668a91b365b8390d8eb369f7d6c6294711a1fef (diff) | |
download | otp-e91ba727f534553a34c05ad54247a0485e2429ff.tar.gz otp-e91ba727f534553a34c05ad54247a0485e2429ff.tar.bz2 otp-e91ba727f534553a34c05ad54247a0485e2429ff.zip |
Implement support for running suites with test case groups through the debugger
OTP-9518
Diffstat (limited to 'lib/common_test/doc/src')
-rw-r--r-- | lib/common_test/doc/src/run_test_chapter.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/common_test/doc/src/run_test_chapter.xml b/lib/common_test/doc/src/run_test_chapter.xml index e668568795..e944f215f6 100644 --- a/lib/common_test/doc/src/run_test_chapter.xml +++ b/lib/common_test/doc/src/run_test_chapter.xml @@ -322,8 +322,9 @@ are to be executed by Common Test, and those functions only. If the step option <c>config</c> is specified, breakpoints will also be initially set on the configuration functions in the suite, i.e. - <c>init_per_suite/1</c>, <c>end_per_suite/1</c>, <c>init_per_testcase/2</c> - and <c>end_per_testcase/2</c>.</p> + <c>init_per_suite/1</c>, <c>end_per_suite/1</c>, + <c>init_per_group/2</c>, <c>end_per_group/2</c>, + <c>init_per_testcase/2</c> and <c>end_per_testcase/2</c>.</p> <p>Common Test enables the Debugger auto attach feature, which means that for every new interpreted test case function that starts to execute, a new trace window will automatically pop up. (This is because each test |