aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/test/wx_app_SUITE.erl
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-10-12 10:29:53 +0200
committerLukas Larsson <[email protected]>2011-02-17 17:18:44 +0100
commit95f687c351e8d01cb41700649e89799192edc0dc (patch)
tree825425fe30646cbd44d45a50ba2b40763615e419 /lib/wx/test/wx_app_SUITE.erl
parentaed82e4ccb6d22ec3ec99aa7f4497881fcbec5e3 (diff)
downloadotp-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_app_SUITE.erl')
-rw-r--r--lib/wx/test/wx_app_SUITE.erl20
1 files changed, 12 insertions, 8 deletions
diff --git a/lib/wx/test/wx_app_SUITE.erl b/lib/wx/test/wx_app_SUITE.erl
index 2d435344cd..c34069af6b 100644
--- a/lib/wx/test/wx_app_SUITE.erl
+++ b/lib/wx/test/wx_app_SUITE.erl
@@ -47,14 +47,18 @@ end_per_testcase(Func,Config) ->
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-all(suite) ->
- [
- fields,
- modules,
- exportall,
- app_depend,
- undef_funcs
- ].
+all() ->
+[fields, modules, exportall, app_depend, undef_funcs].
+
+groups() ->
+ [].
+
+init_per_group(_GroupName, Config) ->
+ Config.
+
+end_per_group(_GroupName, Config) ->
+ Config.
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%