mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 07:17:43 +02:00
Create JSBakerTest.h
This commit is contained in:
parent
e4c25c0aa1
commit
354fa12d36
1 changed files with 29 additions and 0 deletions
29
tests/baking/src/JSBakerTest.h
Normal file
29
tests/baking/src/JSBakerTest.h
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
//
|
||||||
|
// JSBakerTest.h
|
||||||
|
// tests/networking/src
|
||||||
|
//
|
||||||
|
// Created by Utkarsh Gautam on 9/26/17.
|
||||||
|
// Copyright 2015 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_JSBakerTest_h
|
||||||
|
#define hifi_JSBakerTest_h
|
||||||
|
|
||||||
|
#include <QtTest/QtTest>
|
||||||
|
#include "../../libraries/baking/src/JSBaker.h"
|
||||||
|
|
||||||
|
class JSBakerTest: public QObject {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void setTestCases();
|
||||||
|
void testJSBaking();
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::vector<std::pair<QByteArray, QByteArray>> _testCases;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue