mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:09:24 +02:00
Merge branch 'protocol' of https://github.com/huffman/hifi into protocol
This commit is contained in:
commit
501460d489
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