1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 12:07:13 +01:00
SqMod/vendor/Fmt/test/header-only-test.cc

12 lines
253 B
C++
Raw Normal View History

2021-07-03 14:08:25 +03:00
// Header-only configuration test
#include "fmt/core.h"
2022-03-16 22:36:44 +02:00
#include "fmt/ostream.h"
#include "gtest/gtest.h"
2021-07-03 14:08:25 +03:00
#ifndef FMT_HEADER_ONLY
# error "Not in the header-only mode."
#endif
2022-03-16 22:36:44 +02:00
TEST(header_only_test, format) { EXPECT_EQ(fmt::format("foo"), "foo"); }