fmt/test/string-test.cc

16 lines
272 B
C++
Raw Normal View History

2016-05-19 02:54:52 +00:00
/*
Tests of string utilities
Copyright (c) 2012 - 2016, Victor Zverovich
All rights reserved.
For the license information refer to format.h.
*/
#include "fmt/string.h"
#include "gtest/gtest.h"
TEST(StringTest, ToString) {
EXPECT_EQ("42", fmt::to_string(42));
}