summaryrefslogtreecommitdiff
path: root/lib/snmp/test/snmp_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/snmp/test/snmp_SUITE.erl')
-rw-r--r--lib/snmp/test/snmp_SUITE.erl8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/snmp/test/snmp_SUITE.erl b/lib/snmp/test/snmp_SUITE.erl
index db5b3593c1..7919519913 100644
--- a/lib/snmp/test/snmp_SUITE.erl
+++ b/lib/snmp/test/snmp_SUITE.erl
@@ -19,7 +19,7 @@
-module(snmp_SUITE).
--export([all/0, suite/0,groups/0,init_per_group/2,end_per_group/2,
+-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2,
init_per_testcase/2, end_per_testcase/2
]).
@@ -88,6 +88,12 @@ groups() ->
[{snmp_manager_user_test, all}]},
{manager_test, [], [{snmp_manager_test, all}]}].
+init_per_suite(Config) ->
+ Config.
+
+end_per_suite(_Config) ->
+ ok.
+
init_per_group(_GroupName, Config) ->
Config.