MCPcopy Create free account
hub / github.com/Project-LemonLime/Project_LemonLime / Task

Method Task

src/core/task.cpp:21–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19#include <QJsonObject>
20
21Task::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
28auto Task::getTestCaseList() const -> const QList<TestCase *> & { return testCaseList; }
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected