aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/autotest/files/tst_src_boost.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/templates/wizards/autotest/files/tst_src_boost.cpp')
-rw-r--r--share/qtcreator/templates/wizards/autotest/files/tst_src_boost.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/share/qtcreator/templates/wizards/autotest/files/tst_src_boost.cpp b/share/qtcreator/templates/wizards/autotest/files/tst_src_boost.cpp
new file mode 100644
index 00000000000..d523db48b99
--- /dev/null
+++ b/share/qtcreator/templates/wizards/autotest/files/tst_src_boost.cpp
@@ -0,0 +1,13 @@
+%{Cpp:LicenseTemplate}\
+@if "%{TestFrameWork}" == "BoostTest_dyn"
+#define BOOST_TEST_DYN_LINK
+#include <boost/test/unit_test.hpp>
+
+BOOST_AUTO_TEST_SUITE( %{TestSuiteName} )
+
+BOOST_AUTO_TEST_CASE( %{TestCaseName} )
+{
+ BOOST_TEST( true /* test assertion */ );
+}
+
+BOOST_AUTO_TEST_SUITE_END()