diff options
Diffstat (limited to 'asl/testing/testing.cpp')
-rw-r--r-- | asl/testing/testing.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/asl/testing/testing.cpp b/asl/testing/testing.cpp new file mode 100644 index 0000000..a2fe152 --- /dev/null +++ b/asl/testing/testing.cpp @@ -0,0 +1,14 @@ +#include "asl/testing/testing.hpp"
+
+int asl::testing::register_test(
+ const char* suite_name,
+ const char* case_name,
+ TestFunction* fn)
+{
+ return 0;
+}
+
+int main(int argc, char* argv[])
+{
+ return 0;
+}
|