2015-07-14 20:37:52 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2018-01-02 09:20:21 -08:00
|
|
|
/* Copyright (c) 2015-2018 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-12-10 19:38:53 -08:00
|
|
|
#include <HAL/HAL.h>
|
|
|
|
|
|
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) {
|
2017-12-10 19:38:53 -08:00
|
|
|
HAL_Initialize(500, 0);
|
2017-08-18 21:35:53 -07:00
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
|
int ret = RUN_ALL_TESTS();
|
|
|
|
|
return ret;
|
2015-07-14 20:37:52 -07:00
|
|
|
}
|