fmt/test/header-only-test.cc
Victor Zverovich 79f1506fe3 Add base.h
2024-01-09 19:36:12 -08:00

12 lines
253 B
C++

// Header-only configuration test
#include "fmt/base.h"
#include "fmt/ostream.h"
#include "gtest/gtest.h"
#ifndef FMT_HEADER_ONLY
# error "Not in the header-only mode."
#endif
TEST(header_only_test, format) { EXPECT_EQ(fmt::format("foo"), "foo"); }