sms_test.h
1 #ifdef TESTING
2 #include <gtest/gtest.h>
3 #include <gmock/gmock.h>
4 
5 #include "../src/smsServer.h"
6 
7 class SmsMockServer : public SmsServer {
8 
9 public:
10  SmsMockServer(boost::asio::io_service& io, int rport, int pport):SmsServer(io, rport, pport){
11 
12  }
13 };
14 
15 
16 #endif //TESTING
Manages router and publisher.
Definition: smsServer.h:18