mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 19:02:38 +02:00
add initial packet tests
This commit is contained in:
parent
5edb809cd1
commit
3cd2887a08
2 changed files with 39 additions and 0 deletions
14
tests/networking/src/PacketTests.cpp
Normal file
14
tests/networking/src/PacketTests.cpp
Normal 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)
|
25
tests/networking/src/PacketTests.h
Normal file
25
tests/networking/src/PacketTests.h
Normal 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
|
Loading…
Reference in a new issue