2015-07-14 20:37:52 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2017-08-23 22:06:13 -07:00
|
|
|
/* Copyright (c) 2015-2017 FIRST. All Rights Reserved. */
|
2016-01-02 03:02:34 -08:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
2015-07-14 20:37:52 -07:00
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
2016-01-02 03:02:34 -08:00
|
|
|
/* the project. */
|
2015-07-14 20:37:52 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
#include "gtest/gtest.h"
|
2015-07-14 20:37:52 -07:00
|
|
|
|
2017-08-18 21:35:53 -07:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
|
int ret = RUN_ALL_TESTS();
|
|
|
|
|
return ret;
|
2015-07-14 20:37:52 -07:00
|
|
|
}
|