-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ct-suite template for creating a new CT suite
- Loading branch information
1 parent
390421e
commit 3f2d2af
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{description, "Common Test suite module"}. | ||
{variables, [ | ||
{name, "myapp", "Name of the Common Test suite to create"} | ||
]}. | ||
{template, "ct_suite.erl", "test/{{name}}_SUITE.erl"}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
-module({{name}}_SUITE). | ||
|
||
-include_lib("common_test/include/ct.hrl"). | ||
-include_lib("stdlib/include/assert.hrl"). | ||
|
||
-compile(nowarn_export_all). | ||
-compile(export_all). | ||
|
||
suite() -> | ||
[]. | ||
|
||
all() -> | ||
[]. | ||
|
||
groups() -> | ||
[]. | ||
|
||
init_per_suite(Config) -> | ||
Config. | ||
|
||
end_per_suite(_Config) -> | ||
ok. | ||
|
||
init_per_group(_GroupName, Config) -> | ||
Config. | ||
|
||
end_per_group(_GroupName, _Config) -> | ||
ok. | ||
|
||
init_per_testcase(_Case, Config) -> | ||
Config. | ||
|
||
end_per_testcase(_Case, _Config) -> | ||
ok. |