Unit tests for SmartRest

Dependencies:   C027 SmartRest mbed

Revision:
0:789029e49ea1
diff -r 000000000000 -r 789029e49ea1 values/AggregatorTest.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/values/AggregatorTest.h	Mon Mar 24 10:12:45 2014 +0000
@@ -0,0 +1,19 @@
+#ifndef AGGREGATORTEST_H
+#define AGGREGATORTEST_H
+
+#include <stddef.h>
+#include <Aggregator.h>
+
+class AggregatorTest
+{
+public:
+    AggregatorTest();
+    void testAll();
+    void test1();
+    void test2();
+
+private:
+    Aggregator _aggr;
+};
+
+#endif