Use more-standard test case name prefixes.
authorSiraaj Khandkar <siraaj@khandkar.net>
Wed, 19 Aug 2015 14:58:56 +0000 (10:58 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Wed, 19 Aug 2015 14:58:56 +0000 (10:58 -0400)
test/beam_stats_consumer_statsd_SUITE.erl

index 0f5f3d7..f34d003 100644 (file)
@@ -7,11 +7,11 @@
 
 %% Test cases
 -export(
-    [ ct_test__beam_stats_to_bins/1
-    , ct_test__memory_component_to_statsd_msg/1
-    , ct_test__statsd_msg_add_name_prefix/1
-    , ct_test__statsd_msg_to_bin/1
-    , ct_test__node_id_to_bin/1
+    [ t_beam_stats_to_bins/1
+    , t_memory_component_to_statsd_msg/1
+    , t_statsd_msg_add_name_prefix/1
+    , t_statsd_msg_to_bin/1
+    , t_node_id_to_bin/1
     ]).
 
 -define(statsd_module, beam_stats_consumer_statsd).
@@ -26,11 +26,11 @@ all() ->
 
 groups() ->
     Tests =
-        [ ct_test__beam_stats_to_bins
-        , ct_test__memory_component_to_statsd_msg
-        , ct_test__statsd_msg_add_name_prefix
-        , ct_test__statsd_msg_to_bin
-        , ct_test__node_id_to_bin
+        [ t_beam_stats_to_bins
+        , t_memory_component_to_statsd_msg
+        , t_statsd_msg_add_name_prefix
+        , t_statsd_msg_to_bin
+        , t_node_id_to_bin
         ],
     Properties = [],
     [{?GROUP, Properties, Tests}].
@@ -39,17 +39,17 @@ groups() ->
 %%  Test cases
 %% =============================================================================
 
-ct_test__beam_stats_to_bins(_Cfg) ->
+t_beam_stats_to_bins(_Cfg) ->
     ?statsd_module:ct_test__beam_stats_to_bins(_Cfg).
 
-ct_test__memory_component_to_statsd_msg(_Cfg) ->
+t_memory_component_to_statsd_msg(_Cfg) ->
     ?statsd_module:ct_test__memory_component_to_statsd_msg(_Cfg).
 
-ct_test__statsd_msg_add_name_prefix(_Cfg) ->
+t_statsd_msg_add_name_prefix(_Cfg) ->
     ?statsd_module:ct_test__statsd_msg_add_name_prefix(_Cfg).
 
-ct_test__statsd_msg_to_bin(_Cfg) ->
+t_statsd_msg_to_bin(_Cfg) ->
     ?statsd_module:ct_test__statsd_msg_to_bin(_Cfg).
 
-ct_test__node_id_to_bin(_Cfg) ->
+t_node_id_to_bin(_Cfg) ->
     ?statsd_module:ct_test__node_id_to_bin(_Cfg).
This page took 0.022095 seconds and 4 git commands to generate.