diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:37:22 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:25:12 +0100 |
commit | 6261f06d39e990b45f08b79edebe7b18a6eb9f01 (patch) | |
tree | 0900cce5f409e70e9c5ec33af86d861bec82d539 /lib/megaco/test/megaco_call_flow_test.erl | |
parent | 91298c06d77197433c68b3cc1d05eb966e1370e0 (diff) | |
download | otp-6261f06d39e990b45f08b79edebe7b18a6eb9f01.tar.gz otp-6261f06d39e990b45f08b79edebe7b18a6eb9f01.tar.bz2 otp-6261f06d39e990b45f08b79edebe7b18a6eb9f01.zip |
Update megaco tests to conform with common_test standard
Diffstat (limited to 'lib/megaco/test/megaco_call_flow_test.erl')
-rw-r--r-- | lib/megaco/test/megaco_call_flow_test.erl | 36 |
1 files changed, 14 insertions, 22 deletions
diff --git a/lib/megaco/test/megaco_call_flow_test.erl b/lib/megaco/test/megaco_call_flow_test.erl index 5db4cc2c8a..6d4f000670 100644 --- a/lib/megaco/test/megaco_call_flow_test.erl +++ b/lib/megaco/test/megaco_call_flow_test.erl @@ -56,31 +56,23 @@ end_per_testcase(Case, Config) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Top test case -all(suite) -> - [ - text, - binary - ]. +all() -> +[{group, text}, {group, binary}]. + +groups() -> + [{text, [], [pretty, compact]}, + {flex, [], [pretty_flex, compact_flex]}, + {binary, [], [bin, ber, ber_bin, per]}]. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + -text(suite) -> - [ - pretty, - compact - ]. -flex(suite) -> - [ - pretty_flex, - compact_flex - ]. -binary(suite) -> - [ - bin, - ber, - ber_bin, - per - ]. pretty(suite) -> []; |