Unit tests for SmartRest

Dependencies:   C027 SmartRest mbed

values/AggregatorTest.h

Committer:
vwochnik
Date:
2014-03-24
Revision:
0:789029e49ea1

File content as of revision 0:789029e49ea1:

#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