From 354fa12d365521c37e3a3d34ef7f2cc98d8c027d Mon Sep 17 00:00:00 2001 From: utkarshgautamnyu Date: Wed, 27 Sep 2017 18:05:28 -0700 Subject: [PATCH] Create JSBakerTest.h --- tests/baking/src/JSBakerTest.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tests/baking/src/JSBakerTest.h diff --git a/tests/baking/src/JSBakerTest.h b/tests/baking/src/JSBakerTest.h new file mode 100644 index 0000000000..a1d1f73e9f --- /dev/null +++ b/tests/baking/src/JSBakerTest.h @@ -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 +#include "../../libraries/baking/src/JSBaker.h" + +class JSBakerTest: public QObject { + Q_OBJECT + +private slots: + void setTestCases(); + void testJSBaking(); + +private: + std::vector> _testCases; +}; + +#endif