this is a class for unit testing

Dependents:   OS

This is an UnitTest library. You can use for POST.

Revision:
0:b8a9485ea4f3
Child:
1:652e6df36e5d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/UnitTest.h	Wed Nov 01 13:00:17 2017 +0000
@@ -0,0 +1,18 @@
+#ifndef UnitTest_h
+#define UnitTest_h
+
+#include "mbed.h"
+
+class UnitTest
+{
+    private:
+        Timer unitTest;
+        unsigned int testCount;
+    
+    public:
+        void start();
+        void end();
+        void assert(int, int);
+};
+
+#endif
\ No newline at end of file