| 8224 | return ( properties & (ShouldFail | MayFail ) ) != 0; |
| 8225 | } |
| 8226 | bool TestCaseInfo::expectedToFail() const { |
| 8227 | return ( properties & (ShouldFail ) ) != 0; |
| 8228 | } |
| 8229 | |
| 8230 | TestCase::TestCase( ITestCase* testCase, TestCaseInfo const& info ) : TestCaseInfo( info ), test( testCase ) {} |
| 8231 |