aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2018-01-10 16:13:52 +0100
committerSiri Hansen <[email protected]>2019-04-15 11:20:41 +0200
commitacd87425acf7705328b01aa8f0a804207ffe4790 (patch)
tree61a9eff83b7b38e699cdfae74cd05594aaf87596 /lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl
parent8ab1bc2af5933b36c1583b1168e9b7875334cd50 (diff)
downloadotp-acd87425acf7705328b01aa8f0a804207ffe4790.tar.gz
otp-acd87425acf7705328b01aa8f0a804207ffe4790.tar.bz2
otp-acd87425acf7705328b01aa8f0a804207ffe4790.zip
[ct] Add post_groups/2 and post_all/3 hook functions
Diffstat (limited to 'lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl')
-rw-r--r--lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl b/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl
new file mode 100644
index 0000000000..adc86005f9
--- /dev/null
+++ b/lib/common_test/test/ct_hooks_SUITE_data/cth/tests/all_and_groups_SUITE.erl
@@ -0,0 +1,47 @@
+%%
+%% %CopyrightBegin%
+%%
+%% Copyright Ericsson AB 2010-2017. All Rights Reserved.
+%%
+%% Licensed under the Apache License, Version 2.0 (the "License");
+%% you may not use this file except in compliance with the License.
+%% You may obtain a copy of the License at
+%%
+%% http://www.apache.org/licenses/LICENSE-2.0
+%%
+%% Unless required by applicable law or agreed to in writing, software
+%% distributed under the License is distributed on an "AS IS" BASIS,
+%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+%% See the License for the specific language governing permissions and
+%% limitations under the License.
+%%
+%% %CopyrightEnd%
+%%
+
+-module(all_and_groups_SUITE).
+
+-suite_defaults([{timetrap, {minutes, 10}}]).
+
+%% Note: This directive should only be used in test suites.
+-compile(export_all).
+
+-include("ct.hrl").
+
+init_per_group(_Group,Config) ->
+ Config.
+
+end_per_group(_Group,Config) ->
+ ok.
+
+all() ->
+ ct:get_config(all_return,[{group,test_group}]).
+
+groups() ->
+ [{test_group,[tc1]}].
+
+%% Test cases starts here.
+tc1(Config) ->
+ ok.
+
+tc2(Config) ->
+ ok.