squashing git history for the last time
diff --git a/examples/dev_testing/test.cpp b/examples/dev_testing/test.cpp
new file mode 100644
index 0000000..2ed1cb9
--- /dev/null
+++ b/examples/dev_testing/test.cpp
@@ -0,0 +1,32 @@
+#include "doctest.h"

+

+#include <cstdio>

+

+testsuite(test);

+

+test(ttt)

+{

+    printf("test!\n");

+}

+

+struct F {

+    F()

+    {

+        printf("ctor!\n");

+    }

+    ~F()

+    {

+        printf("dtor...\n");

+    }

+};

+

+fixture_noname(F)

+{

+    printf("    fixturing!\n");

+}

+

+testsuite_end;

+

+

+test(__LINE__) {}

+test(__LINE__) {}
\ No newline at end of file