From: Siraaj Khandkar Date: Wed, 19 Aug 2015 14:58:56 +0000 (-0400) Subject: Use more-standard test case name prefixes. X-Git-Tag: 0.0.0~18 X-Git-Url: https://git.xandkar.net/?p=beam_stats.git;a=commitdiff_plain;h=06cf34fbf4a707198201622f97ac86d7f1bb12c6 Use more-standard test case name prefixes. --- diff --git a/test/beam_stats_consumer_statsd_SUITE.erl b/test/beam_stats_consumer_statsd_SUITE.erl index 0f5f3d7..f34d003 100644 --- a/test/beam_stats_consumer_statsd_SUITE.erl +++ b/test/beam_stats_consumer_statsd_SUITE.erl @@ -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).