blob: 3d86a6ad33eb73a99f5de37f56a5918c6235cd40 [file] [log] [blame]
-module(test_SUITE).
-export([all/0, simple_test/1, app_config_file_test/1]).
-include_lib("ct.hrl").
all() ->
[simple_test,
app_config_file_test].
simple_test(Config) ->
io:format("Test: ~p\n", [Config]).
app_config_file_test(_Config) ->
application:start(a1),
{ok, bar} = application:get_env(a1, foo),
application:stop(a1).