| 8 | |
| 9 | Y_UNIT_TEST_SUITE(TStreamPrintfTest) { |
| 10 | Y_UNIT_TEST(TestPrintf) { |
| 11 | TStringStream ss; |
| 12 | |
| 13 | UNIT_ASSERT_EQUAL(Printf(ss, "qw %s %d", "er", 1), 7); |
| 14 | UNIT_ASSERT_EQUAL(ss.Str(), "qw er 1"); |
| 15 | } |
| 16 | |
| 17 | #ifdef __GNUC__ |
| 18 | #pragma GCC diagnostic ignored "-Wformat-zero-length" |