aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/autotest/files/catch2_tst.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/templates/wizards/autotest/files/catch2_tst.cpp')
-rw-r--r--share/qtcreator/templates/wizards/autotest/files/catch2_tst.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/share/qtcreator/templates/wizards/autotest/files/catch2_tst.cpp b/share/qtcreator/templates/wizards/autotest/files/catch2_tst.cpp
new file mode 100644
index 0000000000..604b339e1c
--- /dev/null
+++ b/share/qtcreator/templates/wizards/autotest/files/catch2_tst.cpp
@@ -0,0 +1,6 @@
+#include <catch2/catch.hpp>
+
+TEST_CASE("My first test with Catch2", "[fancy]")
+{
+ REQUIRE(0 == 0);
+}