blob: 7981c0491bbd3f201972a0fa74c4288435c99428 [file] [log] [blame]
Austin Schuh812d0d12021-11-04 20:16:48 -07001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
Brian Silverman8fce7482020-01-05 13:18:21 -08004
5#include "gtest/gtest.h"
6#include "hal/HAL.h"
7
8int main(int argc, char** argv) {
9 HAL_Initialize(500, 0);
10 ::testing::InitGoogleTest(&argc, argv);
11 int ret = RUN_ALL_TESTS();
12 return ret;
13}