2018-01-18 20:04:33 -08:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2019-11-01 21:58:54 -07:00
|
|
|
/* Copyright (c) 2015-2019 FIRST. All Rights Reserved. */
|
2018-01-18 20:04:33 -08:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
2019-11-01 21:58:54 -07:00
|
|
|
#include <hal/HAL.h>
|
2018-01-18 20:04:33 -08:00
|
|
|
|
2019-11-01 21:58:54 -07:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
|
HAL_Initialize(500, 0);
|
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
|
int ret = RUN_ALL_TESTS();
|
|
|
|
|
return ret;
|
2018-01-18 20:04:33 -08:00
|
|
|
}
|