mirror of
https://github.com/overte-org/overte.git
synced 2025-05-07 07:19:29 +02:00
28 lines
596 B
C++
28 lines
596 B
C++
//
|
|
// MovingMinMaxAvgTests.h
|
|
// tests/shared/src
|
|
//
|
|
// Created by Yixin Wang on 7/8/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_MovingMinMaxAvgTests_h
|
|
#define hifi_MovingMinMaxAvgTests_h
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
class MovingMinMaxAvgTests : public QObject {
|
|
|
|
private slots:
|
|
void testQuint64();
|
|
void testInt();
|
|
void testFloat();
|
|
|
|
private:
|
|
quint64 randQuint64();
|
|
};
|
|
|
|
#endif // hifi_MovingMinMaxAvgTests_h
|