Unit tests for SmartRest

Dependencies:   C027 SmartRest mbed

client/SmartRestTest.h

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

File content as of revision 0:789029e49ea1:

#ifndef SMARTRESTTEST_H
#define SMARTRESTTEST_H

#include <stddef.h>
#include "../mock/MockSmartRest.h"

class SmartRestTest
{
public:
    SmartRestTest();

    void test();

private:
    MockSmartRest _smart;
};

#endif