blob: 09072ee347755b28df5298c9a5e73eddcaf8c794 [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.
Austin Schuh1e69f942020-11-14 15:06:14 -08004
5#include "gtest/gtest.h"
6
7int main(int argc, char** argv) {
8 ::testing::InitGoogleTest(&argc, argv);
9 int ret = RUN_ALL_TESTS();
10 return ret;
11}