Added TestRunnerMobile.

This commit is contained in:
NissimHadar 2019-01-22 14:08:31 -08:00
parent 7800a0bddc
commit a51e446b77
4 changed files with 47 additions and 6 deletions

View file

@ -21,9 +21,6 @@ extern Nitpick* nitpick;
#include <tlhelp32.h>
#endif
// TODO: for debug
#include <iostream>
TestRunnerDesktop::TestRunnerDesktop(std::vector<QCheckBox*> dayCheckboxes,
std::vector<QCheckBox*> timeEditCheckboxes,
std::vector<QTimeEdit*> timeEdits,

View file

@ -8,8 +8,8 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef hifi_testRunner_h
#define hifi_testRunner_h
#ifndef hifi_testRunnerDesktop_h
#define hifi_testRunnerDesktop_h
#include <QCheckBox>
#include <QDir>
@ -156,4 +156,4 @@ signals:
private:
QString _commandLine;
};
#endif // hifi_testRunner_h
#endif

View 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() {
}

View 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