mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 22:10:25 +02:00
Added TestRunnerMobile.
This commit is contained in:
parent
7800a0bddc
commit
a51e446b77
4 changed files with 47 additions and 6 deletions
|
@ -21,9 +21,6 @@ extern Nitpick* nitpick;
|
||||||
#include <tlhelp32.h>
|
#include <tlhelp32.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// TODO: for debug
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
TestRunnerDesktop::TestRunnerDesktop(std::vector<QCheckBox*> dayCheckboxes,
|
TestRunnerDesktop::TestRunnerDesktop(std::vector<QCheckBox*> dayCheckboxes,
|
||||||
std::vector<QCheckBox*> timeEditCheckboxes,
|
std::vector<QCheckBox*> timeEditCheckboxes,
|
||||||
std::vector<QTimeEdit*> timeEdits,
|
std::vector<QTimeEdit*> timeEdits,
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef hifi_testRunner_h
|
#ifndef hifi_testRunnerDesktop_h
|
||||||
#define hifi_testRunner_h
|
#define hifi_testRunnerDesktop_h
|
||||||
|
|
||||||
#include <QCheckBox>
|
#include <QCheckBox>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
@ -156,4 +156,4 @@ signals:
|
||||||
private:
|
private:
|
||||||
QString _commandLine;
|
QString _commandLine;
|
||||||
};
|
};
|
||||||
#endif // hifi_testRunner_h
|
#endif
|
||||||
|
|
23
tools/nitpick/src/TestRunnerMobile.cpp
Normal file
23
tools/nitpick/src/TestRunnerMobile.cpp
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
//
|
||||||
|
// TestRunnerMobile.cpp
|
||||||
|
//
|
||||||
|
// Created by Nissim Hadar on 22 Jan 2019.
|
||||||
|
// Copyright 2013 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
#include "TestRunnerMobile.h"
|
||||||
|
|
||||||
|
#include <QThread>
|
||||||
|
#include <QtWidgets/QMessageBox>
|
||||||
|
#include <QtWidgets/QFileDialog>
|
||||||
|
|
||||||
|
#include "Nitpick.h"
|
||||||
|
extern Nitpick* nitpick;
|
||||||
|
|
||||||
|
TestRunnerMobile::TestRunnerMobile(QObject* parent) : QObject(parent) {
|
||||||
|
}
|
||||||
|
|
||||||
|
TestRunnerMobile::~TestRunnerMobile() {
|
||||||
|
}
|
21
tools/nitpick/src/TestRunnerMobile.h
Normal file
21
tools/nitpick/src/TestRunnerMobile.h
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
//
|
||||||
|
// TestRunnerMobile.h
|
||||||
|
//
|
||||||
|
// Created by Nissim Hadar on 22 Jan 2019.
|
||||||
|
// Copyright 2013 High Fidelity, Inc.
|
||||||
|
//
|
||||||
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef hifi_testRunnerMobile_h
|
||||||
|
#define hifi_testRunnerMobile_h
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
class TestRunnerMobile : public QObject {
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit TestRunnerMobile(QObject* parent);
|
||||||
|
~TestRunnerMobile();
|
||||||
|
};
|
||||||
|
#endif
|
Loading…
Reference in a new issue