Zepha/test/Main.cpp
aurailus 012bea39e9 New Map Generation
* Interpolation Class
* noise folder with NoiseParams, NoiseSampler, and NoiseSample classes
* MapGenJobs are in a seperate file
* Rewrite of MapGen class.
2019-03-01 17:16:02 -08:00

21 lines
431 B
C++

#pragma clang diagnostic push
#pragma ide diagnostic ignored "OCUnusedMacroInspection"
//
// Created by aurailus on 31/01/19.
//
#define CATCH_CONFIG_MAIN
#include <catch.hpp>
TEST_CASE("Sanity Check", "[core]") {
REQUIRE(1 + 1 == 2);
}
#include "tests/BlockChunk.cpp"
#include "tests/NetHandler.cpp"
#include "tests/Serializer.cpp"
#include "tests/Packet.cpp"
#include "tests/PerlinNoise.cpp"
#pragma clang diagnostic pop