aboutsummaryrefslogtreecommitdiff
path: root/src/zencore-test/zencore-test.cpp
blob: 3d9a792833c456cfcf575ae255eb0f41562866d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Epic Games, Inc. All Rights Reserved.

#include <zencore/testing.h>
#include <zencore/zencore.h>

#include <zencore/memory/newdelete.h>

int
main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[])
{
#if ZEN_WITH_TESTS
	return zen::testing::RunTestMain(argc, argv, "zencore-test", zen::zencore_forcelinktests);
#else
	return 0;
#endif
}