| 94 | } |
| 95 | |
| 96 | void AcceptError() { |
| 97 | Initialize(); |
| 98 | try { |
| 99 | Parser_->Next(); |
| 100 | UNIT_FAIL("expecting exception"); |
| 101 | } catch (const TUsageException&) { |
| 102 | // expecting |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | void AcceptUnexpectedOption() { |
| 107 | Initialize(); |
no test coverage detected