add initial packet tests

This commit is contained in:
Stephen Birarda 2015-07-14 16:11:29 -07:00
parent 5edb809cd1
commit 3cd2887a08
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,14 @@
//
// PacketTests.cpp
// tests/networking/src
//
// Created by Stephen Birarda on 07/14/15.
// 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
//
#include "PacketTests.h"
QTEST_MAIN(PacketTests)

View file

@ -0,0 +1,25 @@
//
// PacketTests.h
// tests/networking/src
//
// Created by Stephen Birarda on 07/14/15.
// 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_PacketTests_h
#define hifi_PacketTests_h
#pragma once
#include <QtTest/QtTest>
class PacketTests : public QObject {
Q_OBJECT
private slots:
void readTest();
};
#endif // hifi_PacketTests_h