diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:40:35 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:25:13 +0100 |
commit | 1137a924c290f72ed9c2213b38caaef8230cb005 (patch) | |
tree | a37692ae6abd8eb27c57d377654b258fa0e57ce6 /lib/ic/test/ic_be_SUITE.erl | |
parent | 87e168ba95f57d6d5de88c2b2f06d37039bb40e5 (diff) | |
download | otp-1137a924c290f72ed9c2213b38caaef8230cb005.tar.gz otp-1137a924c290f72ed9c2213b38caaef8230cb005.tar.bz2 otp-1137a924c290f72ed9c2213b38caaef8230cb005.zip |
Update ic tests to conform with common_test standard
Diffstat (limited to 'lib/ic/test/ic_be_SUITE.erl')
-rw-r--r-- | lib/ic/test/ic_be_SUITE.erl | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lib/ic/test/ic_be_SUITE.erl b/lib/ic/test/ic_be_SUITE.erl index 5428fbc086..e53cbf9a15 100644 --- a/lib/ic/test/ic_be_SUITE.erl +++ b/lib/ic/test/ic_be_SUITE.erl @@ -22,10 +22,10 @@ %%%---------------------------------------------------------------------- -module(ic_be_SUITE). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). --export([all/1,plain/1]). +-export([all/0,groups/0,init_per_group/2,end_per_group/2,plain/1]). -define(OUT(X), filename:join([?config(priv_dir, Config), gen, to_list(X)])). @@ -33,7 +33,18 @@ %% Top of cases -all(suite) -> [plain]. +all() -> +[plain]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + |