Unit tests for SmartRest

Dependencies:   C027 SmartRest mbed

Committer:
vwochnik
Date:
Mon Mar 24 10:12:45 2014 +0000
Revision:
0:789029e49ea1
fix

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vwochnik 0:789029e49ea1 1 #ifndef AGGREGATORTEST_H
vwochnik 0:789029e49ea1 2 #define AGGREGATORTEST_H
vwochnik 0:789029e49ea1 3
vwochnik 0:789029e49ea1 4 #include <stddef.h>
vwochnik 0:789029e49ea1 5 #include <Aggregator.h>
vwochnik 0:789029e49ea1 6
vwochnik 0:789029e49ea1 7 class AggregatorTest
vwochnik 0:789029e49ea1 8 {
vwochnik 0:789029e49ea1 9 public:
vwochnik 0:789029e49ea1 10 AggregatorTest();
vwochnik 0:789029e49ea1 11 void testAll();
vwochnik 0:789029e49ea1 12 void test1();
vwochnik 0:789029e49ea1 13 void test2();
vwochnik 0:789029e49ea1 14
vwochnik 0:789029e49ea1 15 private:
vwochnik 0:789029e49ea1 16 Aggregator _aggr;
vwochnik 0:789029e49ea1 17 };
vwochnik 0:789029e49ea1 18
vwochnik 0:789029e49ea1 19 #endif