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 f6e1b8d7aa Adding windows test
2018-07-06 10:54:56 +02:00

12 lines
209 B
C++

#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);
}