123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #pragma once
- #include <gtest/gtest.h>
- #include <qprotobufserializer.h>
- namespace QtProtobuf {
- namespace tests {
- class SerializationTest : public ::testing::Test
- {
- public:
- SerializationTest() = default;
- void SetUp() override;
- static void SetUpTestCase();
- protected:
- std::unique_ptr<QProtobufSerializer> serializer;
- };
- }
- }
|