19 lines
238 B
C++
19 lines
238 B
C++
|
|
#include "test_utils.h"
|
||
|
|
|
||
|
|
#if 1
|
||
|
|
TEST(OVERLOAD, EVICT_UDP_OLD_SESS)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if 1
|
||
|
|
TEST(OVERLOAD, EVICT_UDP_NEW_SESS)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
int main(int argc, char **argv)
|
||
|
|
{
|
||
|
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
|
return RUN_ALL_TESTS();
|
||
|
|
}
|