2018-06-12 03:04:30 +08:00
|
|
|
#include <vector>
|
2018-06-13 02:44:05 +08:00
|
|
|
#include "gtest/gtest.h"
|
2018-06-12 03:04:30 +08:00
|
|
|
|
2018-06-13 02:44:05 +08:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
2018-06-12 03:04:30 +08:00
|
|
|
}
|