| 36 | void TestCase::setMemoryLimit(int limit) { memoryLimit = limit; } |
| 37 | |
| 38 | void TestCase::setInputFiles(int index, const QString &fileName) { |
| 39 | if (0 <= index && index < inputFiles.size()) { |
| 40 | inputFiles[index] = fileName; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | void TestCase::setOutputFiles(int index, const QString &fileName) { |
| 45 | if (0 <= index && index < outputFiles.size()) { |
no outgoing calls
no test coverage detected