UnitTests: Fix includes

Former-commit-id: 17f0094da0788864bed8ba47ea19ff215797e06e
This commit is contained in:
Lynix
2015-09-18 14:11:44 +02:00
parent b56a454a40
commit 294894e8c1
24 changed files with 26 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/ByteArray.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
#include <string>

View File

@@ -1,7 +1,6 @@
#include <Nazara/Core/Clock.hpp>
#include <catch.hpp>
#include <thread>
#include <Nazara/Core/Thread.hpp>
#include <Catch/catch.hpp>
SCENARIO("Clock", "[CORE][CLOCK]")
{
@@ -22,7 +21,7 @@ SCENARIO("Clock", "[CORE][CLOCK]")
clock.Unpause();
THEN("Time must not be the initialTime")
{
std::this_thread::sleep_for(std::chrono::microseconds(10));
NzThread::Sleep(1);
REQUIRE(clock.GetMicroseconds() != initialTime);
}
}

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/Color.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
SCENARIO("Color", "[CORE][COLOR]")
{

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/Directory.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
SCENARIO("Directory", "[CORE][DIRECTORY]")
{

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/Error.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
SCENARIO("Error", "[CORE][ERROR]")
{

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/File.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
SCENARIO("File", "[CORE][FILE]")
{

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/String.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
SCENARIO("String", "[CORE][STRING]")
{

View File

@@ -1,5 +1,5 @@
#include <Nazara/Core/StringStream.hpp>
#include <catch.hpp>
#include <Catch/catch.hpp>
SCENARIO("StringStream", "[CORE][STRINGSTREAM]")
{