18 lines
317 B
C++
18 lines
317 B
C++
|
//
|
||
|
// Created by xajhu on 2019/12/3 0003.
|
||
|
//
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
|
||
|
auto main(int argc, char *argv[]) -> int
|
||
|
{
|
||
|
testing::GTEST_FLAG(repeat) = 1;
|
||
|
testing::GTEST_FLAG(break_on_failure) = true;
|
||
|
testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|