| 180 | } |
| 181 | |
| 182 | int main( int argc, char** argv ) |
| 183 | { |
| 184 | QApplication a( argc, argv ); |
| 185 | auto* w = new ProjectModelPerformanceTest; |
| 186 | w->show(); |
| 187 | w->setAttribute(Qt::WA_DeleteOnClose); |
| 188 | |
| 189 | QMetaObject::invokeMethod(w, "init"); |
| 190 | return a.exec(); |
| 191 | } |
| 192 | |
| 193 | #include "moc_projectmodelperformancetest.cpp" |
nothing calls this directly
no test coverage detected