diff options
Diffstat (limited to 'test/mysqlerl_app_SUITE.erl')
-rw-r--r-- | test/mysqlerl_app_SUITE.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/mysqlerl_app_SUITE.erl b/test/mysqlerl_app_SUITE.erl index 706b132..c8e777e 100644 --- a/test/mysqlerl_app_SUITE.erl +++ b/test/mysqlerl_app_SUITE.erl @@ -117,8 +117,12 @@ all() -> %% Comment = term() %% @end %%-------------------------------------------------------------------- +app_starts(doc) -> + ["Tests application:start/1."]; app_starts(_Config) -> ok = application:start(mysqlerl). +app_stops(doc) -> + ["Tests application:stop/1."]; app_stops(_Config) -> ok = application:stop(mysqlerl). |