2016-04-24 09:06:12 -07:00
|
|
|
// Header-only configuration test
|
2014-12-09 06:22:55 -08:00
|
|
|
|
2024-01-09 19:30:46 -08:00
|
|
|
#include "fmt/base.h"
|
2021-09-03 08:35:13 -07:00
|
|
|
#include "fmt/ostream.h"
|
|
|
|
|
#include "gtest/gtest.h"
|
2021-05-02 05:55:55 -07:00
|
|
|
|
|
|
|
|
#ifndef FMT_HEADER_ONLY
|
|
|
|
|
# error "Not in the header-only mode."
|
|
|
|
|
#endif
|
2021-09-03 08:35:13 -07:00
|
|
|
|
|
|
|
|
TEST(header_only_test, format) { EXPECT_EQ(fmt::format("foo"), "foo"); }
|