| 1788 | return applies( properties & TestCaseProperties::IsHidden ); |
| 1789 | } |
| 1790 | bool TestCaseInfo::throws() const { |
| 1791 | return applies( properties & TestCaseProperties::Throws ); |
| 1792 | } |
| 1793 | bool TestCaseInfo::okToFail() const { |
| 1794 | return applies( properties & (TestCaseProperties::ShouldFail | TestCaseProperties::MayFail ) ); |
| 1795 | } |
no test coverage detected