mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 12:13:52 +00:00
13 lines
204 B
C++
13 lines
204 B
C++
#ifdef CLI11_SINGLE_FILE
|
|
#include "CLI11.hpp"
|
|
#else
|
|
#include "CLI/CLI.hpp"
|
|
#endif
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(Deprecated, Emtpy) {
|
|
// No deprecated features at this time.
|
|
EXPECT_TRUE(true);
|
|
}
|