| 33 | class CommTest : public ::testing::Test { |
| 34 | public: |
| 35 | void SetUp() override { |
| 36 | MemoryContext comm_test_memory_context = AllocSetContextCreate( |
| 37 | (MemoryContext)NULL, "CommTestMemoryContext", 1 * 1024 * 1024, |
| 38 | 1 * 1024 * 1024, 1 * 1024 * 1024); |
| 39 | MemoryContextSwitchTo(comm_test_memory_context); |
| 40 | } |
| 41 | }; |
| 42 | |
| 43 | TEST_F(CommTest, TestDeleteOperator) { |
nothing calls this directly
no test coverage detected