1: -module(example_SUITE). % The naming convention (with uppercase _SUITE) Erlang
    2:                         % convention which allow ct to find test suites.
    3:                         % Something like ExUnit _test.exs naming convention
    4: 
    5: -export([all/0]).
    6: 
    7: -export([test_function_name/1]).
    8: 
    9: all() ->
   10:     [test_function_name].
   11: 
   12: test_function_name(_Config) ->
   13:     ct:log("Example message"),
   14:     2 = 1 + 1.