Autonomous Racing  1
f1tenth Project Group of Technical University Dortmund, Germany
test_car_control.cpp
Go to the documentation of this file.
1 // StdLib
2 #include <cstdlib>
3 
4 // Own
5 // ...
6 
7 // Testing
8 #include <gtest/gtest.h>
9 
10 TEST(dummy_test, dummy_test_01)
11 {
12  ASSERT_EQ(EXIT_SUCCESS, EXIT_SUCCESS);
13 }
14 
15 TEST(dummy_test, dummy_test_02)
16 {
17  ASSERT_EQ(1, 1);
18 }
19 
20 int main(int argc, char** argv)
21 {
22  ::testing::InitGoogleTest(&argc, argv);
23  return RUN_ALL_TESTS();
24 }
TEST(dummy_test, dummy_test_01)
int main(int argc, char **argv)