1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include "testserviceserver.h"
- #include <gtest/gtest.h>
- using namespace qtprotobufnamespace::tests;
- using namespace qtprotobuf;
- class TestServiceServerImpl : public TestServiceServer {
- SimpleStringMessage testMethod(const SimpleStringMessage &) override { return SimpleStringMessage(); }
- };
- class ServerTest : public ::testing::Test
- {
- };
- TEST_F(ServerTest, CheckMethodsGeneration)
- {
- }
|