blob: b4b406ac826332a1b1dd2f009cbd84006d6e2989 (
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 <zenhttp/zenhttp.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, "zenhttp-test", zen::zenhttp_forcelinktests);
#else
return 0;
#endif
}
|