| 1794 | return applies( properties & (TestCaseProperties::ShouldFail | TestCaseProperties::MayFail ) ); |
| 1795 | } |
| 1796 | bool TestCaseInfo::expectedToFail() const { |
| 1797 | return applies( properties & (TestCaseProperties::ShouldFail) ); |
| 1798 | } |
| 1799 | |
| 1800 | void TestCaseInfo::addFilenameTag() { |
| 1801 | std::string combined("#"); |
no test coverage detected