| 10647 | } |
| 10648 | |
| 10649 | void writeProperties( JsonArrayWriter writer, |
| 10650 | TestCaseInfo const& info ) { |
| 10651 | if ( info.isHidden() ) { writer.write( "is-hidden"_sr ); } |
| 10652 | if ( info.okToFail() ) { writer.write( "ok-to-fail"_sr ); } |
| 10653 | if ( info.expectedToFail() ) { |
| 10654 | writer.write( "expected-to-fail"_sr ); |
| 10655 | } |
| 10656 | if ( info.throws() ) { writer.write( "throws"_sr ); } |
| 10657 | } |
| 10658 | |
| 10659 | } // namespace |
| 10660 |
no test coverage detected