Unit tests for SmartRest

Dependencies:   C027 SmartRest mbed

mock/MockSmartRest.h

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

File content as of revision 0:789029e49ea1:

#ifndef MOCKSMARTREST_H
#define MOCKSMARTREST_H

#include <SmartRest.h>
#include "MockClient.h"

class MockSmartRest : public SmartRest
{
public:
    MockSmartRest(const char*);
    MockClient& client();
private:
    MockClient _client;
};

#endif