| 24 | } |
| 25 | |
| 26 | bool executeSQL( std::string const & /*query*/, int const /*id*/, std::string const & arg ) { |
| 27 | if ( arg.length() == 0 ) { |
| 28 | throw std::logic_error("empty SQL query argument"); |
| 29 | } |
| 30 | return true; // ok |
| 31 | } |
| 32 | }; |
| 33 | |
| 34 | class UniqueTestsFixture |
no outgoing calls
no test coverage detected