summaryrefslogtreecommitdiffstats
path: root/src/tests/tests.cpp
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2016-03-20 15:58:24 +0100
committerMerryMage <MerryMage@users.noreply.github.com>2016-05-19 09:38:03 +0200
commita03f9b6fb6cdaf480737faf37b9c244f46cd1a85 (patch)
tree9f2ff1718289bc48de5d9c07fee1d3c54c3af58c /src/tests/tests.cpp
parentAudioCore: Implement time stretcher (#1737) (diff)
downloadyuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.tar
yuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.tar.gz
yuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.tar.bz2
yuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.tar.lz
yuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.tar.xz
yuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.tar.zst
yuzu-a03f9b6fb6cdaf480737faf37b9c244f46cd1a85.zip
Diffstat (limited to '')
-rw-r--r--src/tests/tests.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp
new file mode 100644
index 000000000..73978676f
--- /dev/null
+++ b/src/tests/tests.cpp
@@ -0,0 +1,9 @@
+// Copyright 2016 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#define CATCH_CONFIG_MAIN
+#include <catch.hpp>
+
+// Catch provides the main function since we've given it the
+// CATCH_CONFIG_MAIN preprocessor directive.