Current section
Files
Jump to
Current section
Files
test/ct/sui_ct.hrl
-ifndef(HELLO_CT).
-define(HELLO_CT, true).
-include_lib("common_test/include/ct.hrl").
-include_lib("eunit/include/eunit.hrl").
-define(log(F, P),
ct:print("pid = ~p, mod:~p fun:~p ~s ~p ", [self(), ?MODULE, ?FUNCTION_NAME, F, P])).
-define(log(P), ?log("", P)).
-define(log(), ?log("")).
-compile(export_all).
-endif.