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