| 74 | }; |
| 75 | |
| 76 | TEST_F(AgentGroupTest, test_sanity) { |
| 77 | int id = AgentGroup<agent_type>::create_new_agent(); |
| 78 | ASSERT_TRUE(id >= 0) << id; |
| 79 | agent_type *element = AgentGroup<agent_type>::get_or_create_tls_agent(id); |
| 80 | ASSERT_TRUE(element != NULL); |
| 81 | AgentGroup<agent_type>::destroy_agent(id); |
| 82 | } |
| 83 | |
| 84 | butil::atomic<uint64_t> g_counter(0); |
| 85 |