#include "../include/iutest.hpp"
IUTEST(TestDisabled, DISABLED_Test1)
{
}
{
}
IUTEST(DISABLED_TestCaseDisabled, Test1)
{
}
IUTEST(DISABLED_TestCaseDisabled, Test2)
{
}
#define DISABLED_MacroTest EnabledTest
#define MacroTest DISABLED_Test
IUTEST(DISABLED_MacroTest, Enable)
{
}
{
}
{
}
typedef EnabledTestFixed DISABLED_TestFixed;
#define MacroTestF DISABLED_TestFixed
#define DISABLED_MacroTestF EnabledTestFixed
{
}
{
}
{
}
テストベース
Definition: iutest_body.hpp:44
#define IUTEST_ASSERT_NOTNULL(...)
NOT NULL テスト
Definition: iutest.hpp:406
#define IUTEST_ASSERT_EQ(expected, actual)
== テスト
Definition: iutest.hpp:308
#define IUTEST_ASSERT_TRUE(...)
TRUE テスト
Definition: iutest.hpp:369
#define IUTEST_ASSERT_FALSE(...)
FALSE テスト
Definition: iutest.hpp:381
#define IUTEST(testsuite_, testname_)
テスト関数定義マクロ
Definition: iutest.hpp:72
#define IUTEST_F(testfixture_, testname_)
ユーザー指定テスト関数定義マクロ
Definition: iutest.hpp:81
const ::iutest::TestSuite * GetCurrentTestSuite()
現在の TestSuite を取得
Definition: iutest_util_tests.hpp:99