12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include "servertest.h"
- #include "testserviceserver.h"
- using namespace qtprotobufnamespace::tests;
- using namespace qtprotobuf::tests;
- using namespace qtprotobuf;
- class TestServiceServerImpl : public TestServiceServer {
- SimpleStringMessage testMethod(const SimpleStringMessage &) override { return SimpleStringMessage(); }
- };
- ServerTest::ServerTest()
- {
- }
- TEST_F(ServerTest, CheckMethodsGeneration)
- {
- TestServiceServerImpl testServer;
- }
|