diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:29:53 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:18:44 +0100 |
commit | 95f687c351e8d01cb41700649e89799192edc0dc (patch) | |
tree | 825425fe30646cbd44d45a50ba2b40763615e419 /lib/wx/test/wx_event_SUITE.erl | |
parent | aed82e4ccb6d22ec3ec99aa7f4497881fcbec5e3 (diff) | |
download | otp-95f687c351e8d01cb41700649e89799192edc0dc.tar.gz otp-95f687c351e8d01cb41700649e89799192edc0dc.tar.bz2 otp-95f687c351e8d01cb41700649e89799192edc0dc.zip |
Update wx tests to conform with common_test standard
Diffstat (limited to 'lib/wx/test/wx_event_SUITE.erl')
-rw-r--r-- | lib/wx/test/wx_event_SUITE.erl | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/lib/wx/test/wx_event_SUITE.erl b/lib/wx/test/wx_event_SUITE.erl index 883f89195a..a8260f22de 100644 --- a/lib/wx/test/wx_event_SUITE.erl +++ b/lib/wx/test/wx_event_SUITE.erl @@ -22,7 +22,7 @@ %%% Created : 3 Nov 2008 by Dan Gudmundsson <[email protected]> %%%------------------------------------------------------------------- -module(wx_event_SUITE). --export([all/1, init_per_suite/1, end_per_suite/1, +-export([all/0,groups/0,init_per_group/2,end_per_group/2, init_per_suite/1, end_per_suite/1, init_per_testcase/2, end_per_testcase/2]). -compile(export_all). @@ -42,16 +42,19 @@ end_per_testcase(Func,Config) -> wx_test_lib:end_per_testcase(Func,Config). %% SUITE specification -all(suite) -> - [ - connect, - disconnect, - connect_msg_20, - connect_cb_20, - mouse_on_grid, - spin_event, - connect_in_callback - ]. +all() -> +[connect, disconnect, connect_msg_20, connect_cb_20, + mouse_on_grid, spin_event, connect_in_callback]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + %% The test cases |