| 1791 | return applies( properties & TestCaseProperties::Throws ); |
| 1792 | } |
| 1793 | bool TestCaseInfo::okToFail() const { |
| 1794 | return applies( properties & (TestCaseProperties::ShouldFail | TestCaseProperties::MayFail ) ); |
| 1795 | } |
| 1796 | bool TestCaseInfo::expectedToFail() const { |
| 1797 | return applies( properties & (TestCaseProperties::ShouldFail) ); |
| 1798 | } |
no test coverage detected