FRC Paradigm Shift #1259
Documentation for the 2021 Robot
main.cpp
Go to the documentation of this file.
1 #include <hal/HAL.h>
2 
3 #include "gtest/gtest.h"
4 
5 int main(int argc, char** argv) {
6  HAL_Initialize(500, 0);
7  ::testing::InitGoogleTest(&argc, argv);
8  int ret = RUN_ALL_TESTS();
9  return ret;
10 }
int main(int argc, char **argv)
Definition: main.cpp:5