aboutsummaryrefslogtreecommitdiff
path: root/src/zenstore-test/zenstore-test.cpp
blob: 875373a9de4c5f68b5f4f07529ec6cc3951ac3b4 (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 <zenstore/zenstore.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, "zenstore-test", zen::zenstore_forcelinktests);
#else
	return 0;
#endif
}