Set-up testing skeleton.
[hope.git] / test / hope_kv_list_SUITE.erl
CommitLineData
56b05e81
SK
1-module(hope_kv_list_SUITE).
2
3%% Callbacks
4-export(
5 [ all/0
6 , groups/0
7 ]).
8
9%% Test cases
10-export(
11 [
12 ]).
13
14
15-define(GROUP_KV_LIST, kv_list).
16
17
18%% ============================================================================
19%% Common Test callbacks
20%% ============================================================================
21
22all() ->
23 [{group, ?GROUP_KV_LIST}].
24
25groups() ->
26 Tests =
27 [
28 ],
29 Properties = [],
30 [{?GROUP_KV_LIST, Properties, Tests}].
31
32
33%% =============================================================================
34%% Test cases
35%% =============================================================================
This page took 0.033614 seconds and 4 git commands to generate.