mirror of
https://github.com/overte-org/overte.git
synced 2025-05-08 10:09:15 +02:00
30 lines
716 B
C++
30 lines
716 B
C++
//
|
|
// SequenceNumberStatsTests.h
|
|
// tests/networking/src
|
|
//
|
|
// Created by Yixin Wang on 6/24/2014
|
|
// Copyright 2014 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_SequenceNumberStatsTests_h
|
|
#define hifi_SequenceNumberStatsTests_h
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
#include "SequenceNumberStatsTests.h"
|
|
#include "SequenceNumberStats.h"
|
|
|
|
class SequenceNumberStatsTests : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void rolloverTest();
|
|
void earlyLateTest();
|
|
void duplicateTest();
|
|
void pruneTest();
|
|
void resyncTest();
|
|
};
|
|
|
|
#endif // hifi_SequenceNumberStatsTests_h
|