| 14 | #define TEST_LOCATION() { __FILE__, __LINE__ } |
| 15 | |
| 16 | class GrootTestBase : public QObject |
| 17 | { |
| 18 | Q_OBJECT |
| 19 | |
| 20 | public: |
| 21 | struct TestLocation{ |
| 22 | const char* file; |
| 23 | int line; |
| 24 | }; |
| 25 | |
| 26 | protected: |
| 27 | QByteArray readFile(const char* name); |
nothing calls this directly
no outgoing calls
no test coverage detected