Unit tests for SmartRest

Dependencies:   C027 SmartRest mbed

values/IntegerValueTest.h

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

File content as of revision 0:789029e49ea1:

#ifndef INTEGERVALUETEST_H
#define INTEGERVALUETEST_H

#include <stddef.h>
#include <stdint.h>
#include "IntegerValue.h"
#include "../mock/BufferedDataSink.h"

class IntegerValueTest
{
public:
    IntegerValueTest();

    void test();
protected:
    void testValue(long number, const char *expected);

private:
    BufferedDataSink sink;
};

#endif