| 19 | #include <QJsonObject> |
| 20 | |
| 21 | Task::Task(QObject *parent, TaskType taskType, ComparisonMode comparisonMode, QString diffArguments, |
| 22 | int realPrecision, bool standardInputCheck, bool standardOutputCheck, bool subFolderCheck) |
| 23 | : QObject(parent), taskType(taskType), comparisonMode(comparisonMode), |
| 24 | diffArguments(std::move(diffArguments)), realPrecision(realPrecision), |
| 25 | standardInputCheck(standardInputCheck), standardOutputCheck(standardOutputCheck), |
| 26 | subFolderCheck(subFolderCheck) {} |
| 27 | |
| 28 | auto Task::getTestCaseList() const -> const QList<TestCase *> & { return testCaseList; } |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected