mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 20:23:55 +00:00
12 lines
209 B
C++
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);
|
|
}
|