| 136 | } |
| 137 | |
| 138 | TEST_F(LoadBalancerTest, doubly_buffered_data) { |
| 139 | test_doubly_buffered_data<butil::DoublyBufferedData<Foo>>(); |
| 140 | test_doubly_buffered_data<butil::DoublyBufferedData<Foo, butil::Void, false>>(); |
| 141 | test_doubly_buffered_data<butil::DoublyBufferedData<Foo, UserTLS, false>>(); |
| 142 | test_doubly_buffered_data<butil::DoublyBufferedData<Foo, butil::Void, true>>(); |
| 143 | } |
| 144 | |
| 145 | bool exitFlag = false; |
| 146 |
nothing calls this directly
no test coverage detected