-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Contains boilerplate code and a few hints how Common Tests are to be used
- Loading branch information
Showing
2 changed files
with
59 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,53 @@ | ||
%%%------------------------------------------------------------------- | ||
%% @copyright (c) {{copyright_year}} {{author_name}} | ||
%%%------------------------------------------------------------------- | ||
|
||
-module({{name}}_SUITE). | ||
-author("{{author_email}}"). | ||
|
||
-include_lib("common_test/include/ct.hrl"). | ||
|
||
%% Enables ?assert() for readable output | ||
-include_lib("stdlib/include/assert.hrl"). | ||
|
||
-compile(nowarn_export_all). | ||
-compile(export_all). | ||
|
||
%%%------------------------------------------------------------------- | ||
%% Test server callbacks | ||
|
||
suite() -> | ||
[]. | ||
|
||
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(_TestCase, Config) -> | ||
Config. | ||
|
||
end_per_testcase(_TestCase, _Config) -> | ||
ok. | ||
|
||
groups() -> | ||
[]. | ||
|
||
all() -> | ||
[basic]. | ||
|
||
%%%------------------------------------------------------------------- | ||
%% Test cases | ||
basic() -> | ||
[{doc, "Tests basic functionality"}]. | ||
|
||
basic(_Config) -> | ||
?assert(true). | ||
|
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,6 @@ | ||
{description, "Common Test suite"}. | ||
{variables, [ | ||
{name, "suite", "Name of the suite, prepended to the standard _SUITE suffix"} | ||
]}. | ||
{dir, "test"}. | ||
{template, "ct_suite.erl", "test/{{name}}_SUITE.erl"}. |