link_test_2.cpp 209 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 #include "CLI/CLI.hpp" #include "CLI/Timer.hpp" #include <gtest/gtest.h> int do_nothing(); // Verifies there are no unguarded inlines TEST(Link, DoNothing) { int a = do_nothing(); EXPECT_EQ(7, a); }