Set-up testing skeleton.
[hope.git] / test / hope_kv_list_SUITE.erl
diff --git a/test/hope_kv_list_SUITE.erl b/test/hope_kv_list_SUITE.erl
new file mode 100644 (file)
index 0000000..65d4d1f
--- /dev/null
@@ -0,0 +1,35 @@
+-module(hope_kv_list_SUITE).
+
+%% Callbacks
+-export(
+    [ all/0
+    , groups/0
+    ]).
+
+%% Test cases
+-export(
+    [
+    ]).
+
+
+-define(GROUP_KV_LIST, kv_list).
+
+
+%% ============================================================================
+%% Common Test callbacks
+%% ============================================================================
+
+all() ->
+    [{group, ?GROUP_KV_LIST}].
+
+groups() ->
+    Tests =
+        [
+        ],
+    Properties = [],
+    [{?GROUP_KV_LIST, Properties, Tests}].
+
+
+%% =============================================================================
+%%  Test cases
+%% =============================================================================
This page took 0.019689 seconds and 4 git commands to generate.