| 35 | using KDevelop::Path; |
| 36 | |
| 37 | void generateChilds( ProjectBaseItem* parent, int count, int depth ) |
| 38 | { |
| 39 | for( int i = 0; i < 10; i++ ) { |
| 40 | if( depth > 0 ) { |
| 41 | auto* item = new ProjectFolderItem( QStringLiteral( "f%1" ).arg( i ), parent ); |
| 42 | generateChilds( item, count, depth - 1 ); |
| 43 | } else { |
| 44 | new ProjectFileItem( QStringLiteral( "f%1" ).arg( i ), parent ); |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | ProjectModelPerformanceTest::ProjectModelPerformanceTest(QWidget* parent ) |
| 50 | : QWidget(parent) |
no outgoing calls
no test coverage detected