summaryrefslogtreecommitdiff
path: root/inttest/ct_cover/test_SUITE.erl
blob: 3d86a6ad33eb73a99f5de37f56a5918c6235cd40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-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).