diff options
author | Lukas Larsson <[email protected]> | 2010-12-14 15:15:45 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:34:49 +0100 |
commit | 86108c144f9b0c4bed2e109ff4abb77408f22b9b (patch) | |
tree | 1a26aa1af4d182b60c23f7fc02ab590ec0cb333e /lib/cosProperty/test/property_SUITE.erl | |
parent | d7dfc91b854528df3ce71e5fa2c4d9bacb8f1bef (diff) | |
download | otp-86108c144f9b0c4bed2e109ff4abb77408f22b9b.tar.gz otp-86108c144f9b0c4bed2e109ff4abb77408f22b9b.tar.bz2 otp-86108c144f9b0c4bed2e109ff4abb77408f22b9b.zip |
Fix formatting for cosProperty
Diffstat (limited to 'lib/cosProperty/test/property_SUITE.erl')
-rw-r--r-- | lib/cosProperty/test/property_SUITE.erl | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/lib/cosProperty/test/property_SUITE.erl b/lib/cosProperty/test/property_SUITE.erl index 6dd48dbef2..3a40f217ea 100644 --- a/lib/cosProperty/test/property_SUITE.erl +++ b/lib/cosProperty/test/property_SUITE.erl @@ -86,7 +86,8 @@ %% External exports %%----------------------------------------------------------------- %% Fixed exports --export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2, cases/0, init_per_suite/1, end_per_suite/1, +-export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2, cases/0, + init_per_suite/1, end_per_suite/1, init_per_testcase/2, end_per_testcase/2]). %% Test cases -export([create_setdef_api/1, create_set_api/1, define_with_mode_api/1, @@ -101,24 +102,21 @@ suite() -> [{suite_callbacks,[ts_install_scb]}]. all() -> -cases(). + cases(). groups() -> []. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. - cases() -> -[create_setdef_api, create_set_api, - define_with_mode_api, define_api, names_iterator_api, - properties_iterator_api, app_test]. - - + [create_setdef_api, create_set_api, + define_with_mode_api, define_api, names_iterator_api, + properties_iterator_api, app_test]. %%----------------------------------------------------------------- %% Init and cleanup functions. |