aboutsummaryrefslogtreecommitdiff
path: root/src/test/main.cpp
blob: f792239a1f3ddc2da357c6e3faf792a553ff8d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <crepe/api/Config.h>

#include <gtest/gtest.h>

using namespace crepe;
using namespace testing;

int main(int argc, char ** argv) {
	InitGoogleTest(&argc, argv);

	auto & cfg = Config::get_instance();
	cfg.log.level = Log::Level::INFO;

	return RUN_ALL_TESTS();
}