12345678910111213141516171819202122 |
- #include <catch2/catch_test_macros.hpp>
- class TestCaseFixture {
- public:
- int m_a;
- };
- TEST_CASE_METHOD(TestCaseFixture, "A test case with duplicated name and tags", "[tag1]") {}
- TEST_CASE_METHOD(TestCaseFixture, "A test case with duplicated name and tags", "[tag1]") {}
|