| 40 | //------------------------------------------------------------------------------ |
| 41 | |
| 42 | class OptionsTest : public Test |
| 43 | { |
| 44 | public: |
| 45 | OptionsTest() |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | protected: |
| 50 | virtual void SetUp() |
| 51 | { |
| 52 | output.str(std::string()); |
| 53 | error.str(std::string()); |
| 54 | } |
| 55 | |
| 56 | virtual void TearDown() |
| 57 | { |
| 58 | } |
| 59 | |
| 60 | Options options_; |
| 61 | }; |
| 62 | |
| 63 | //------------------------------------------------------------------------------ |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected