1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-29 12:13:52 +00:00
CLI11/tests/link_test_2.cpp
Henry Fredrick Schreiner 27f718125d Reformat with clang-format
2017-05-31 12:03:05 -04:00

12 lines
208 B
C++

#include "CLI/CLI.hpp"
#include "CLI/Timer.hpp"
#include <gtest/gtest.h>
int do_nothing();
// Verifies there are no ungarded inlines
TEST(Link, DoNothing) {
int a = do_nothing();
EXPECT_EQ(7, a);
}