| 40 | } |
| 41 | |
| 42 | void setupLocalRepository( const QString& name, VcsLocation & reposLoc ) |
| 43 | { |
| 44 | KProcess cmd; |
| 45 | cmd.setWorkingDirectory(name); |
| 46 | cmd << QStringLiteral("svnadmin") << QStringLiteral("create") << name; |
| 47 | QCOMPARE(cmd.execute(10000), 0); |
| 48 | |
| 49 | reposLoc.setRepositoryServer("file://" + name ); |
| 50 | } |
| 51 | |
| 52 | void setupSampleProject( const QString& name, const QString& content ) |
| 53 | { |
no test coverage detected