-
Notifications
You must be signed in to change notification settings - Fork 518
Open
Labels
beginnerenhancementnew behaviour or additional functionalitynew behaviour or additional functionality
Description
A common test suite template would be useful. Like:
rebar3 new ct-suite modname
Creates the file test/modname_SUITE.erl
:
-module(modname_SUITE).
-compile(export_all).
-include_lib("common_test/include/ct.hrl").
-include_lib("stdlib/include/assert.hrl").
all() ->
[].
init_per_suite(Config) ->
Config.
end_per_suite...
init_per_group..
end_per_group..
init_per_testcase...
end_per_testcase...
wojtekmach, max-au and goncalotomas
Metadata
Metadata
Assignees
Labels
beginnerenhancementnew behaviour or additional functionalitynew behaviour or additional functionality