iutest
1.17.1.0
|
テスト定義マクロ [詳解]
マクロ定義 | |
#define | IUTEST_TEST(testcase_, testname_) |
テスト関数定義マクロ [詳解] | |
#define | IUTEST(testcase_, testname_) IUTEST_TEST(testcase_, testname_) |
テスト関数定義マクロ [詳解] | |
#define | IUTEST_F(testfixture_, testname_) IUTEST_TEST_F_(testfixture_, testname_) |
ユーザー指定テスト関数定義マクロ [詳解] | |
#define | IUTEST_ALIAS_TESTNAME(testname_) IUTEST_ALIAS_TESTNAME_(testname_) |
テストの別名 [詳解] | |
#define | IUTEST_ALIAS_TESTNAME_F(testcasename_, testfixture_) IUTEST_ALIAS_TESTNAME_F_(testcasename_, testfixture_) |
テストフィクスチャ用テストの別名 [詳解] | |
#define | IUTEST_JAPANESE_NAME(testname_) IUTEST_ALIAS_TESTNAME(testname_) |
日本語テスト名 [詳解] | |
#define | IUTEST_JAPANESE_NAME_F(testcasename_, testfixture_) IUTEST_ALIAS_TESTNAME_F(testcasename_, testfixture_) |
テストフィクスチャ用日本語テスト名 [詳解] | |
#define | IUTEST_INIT(argc_, argv_) ::iutest::InitIrisUnitTest(argc_, argv_) |
iutest の初期化処理 [詳解] | |
#define | IUTEST_RUN_ALL_TESTS() ::iutest::UnitTestSource::GetInstance().Run() |
すべてのテストを実行する | |
#define | IUTEST_PACKAGE(name) IIUT_PACKAGE_(name) |
パッケージ名前空間の定義 [詳解] | |
テスト定義マクロ
#define IUTEST | ( | testcase_, | |
testname_ | |||
) | IUTEST_TEST(testcase_, testname_) |
テスト関数定義マクロ
testcase_ | = テストケース名 |
testname_ | = テスト名 |
#define IUTEST_ALIAS_TESTNAME | ( | testname_ | ) | IUTEST_ALIAS_TESTNAME_(testname_) |
テストの別名
testname_ | = テスト名 |
#define IUTEST_ALIAS_TESTNAME_F | ( | testcasename_, | |
testfixture_ | |||
) | IUTEST_ALIAS_TESTNAME_F_(testcasename_, testfixture_) |
テストフィクスチャ用テストの別名
testcasename_ | = テストケース名 |
testfixture_ | = テストフィクスチャ名 |
#define IUTEST_F | ( | testfixture_, | |
testname_ | |||
) | IUTEST_TEST_F_(testfixture_, testname_) |
#define IUTEST_INIT | ( | argc_, | |
argv_ | |||
) | ::iutest::InitIrisUnitTest(argc_, argv_) |
#define IUTEST_JAPANESE_NAME | ( | testname_ | ) | IUTEST_ALIAS_TESTNAME(testname_) |
日本語テスト名
testname_ | = テスト名 |
#define IUTEST_JAPANESE_NAME_F | ( | testcasename_, | |
testfixture_ | |||
) | IUTEST_ALIAS_TESTNAME_F(testcasename_, testfixture_) |
テストフィクスチャ用日本語テスト名
testcasename_ | = テストケース名 |
testfixture_ | = テストフィクスチャ名 |
#define IUTEST_PACKAGE | ( | name | ) | IIUT_PACKAGE_(name) |
#define IUTEST_TEST | ( | testcase_, | |
testname_ | |||
) |
テスト関数定義マクロ
testcase_ | = テストケース名 |
testname_ | = テスト名 |