| 97 | } |
| 98 | |
| 99 | void ShellCommandTest::testEmptyCommand() |
| 100 | { |
| 101 | const QString command = QString(); |
| 102 | ShellCommand shellCommand(command); |
| 103 | QCOMPARE(shellCommand.command(), QString()); |
| 104 | QCOMPARE(shellCommand.arguments(), QStringList()); |
| 105 | QCOMPARE(shellCommand.fullCommand(), QString()); |
| 106 | } |
| 107 | |
| 108 | QTEST_GUILESS_MAIN(ShellCommandTest) |
| 109 |
nothing calls this directly
no test coverage detected