| 6 | |
| 7 | |
| 8 | TEST(StringBufferTest, Capacity) |
| 9 | { |
| 10 | signed short int const expected_capacity = 1000; |
| 11 | cpp_odbc::level2::string_buffer buffer(expected_capacity); |
| 12 | |
| 13 | EXPECT_EQ( expected_capacity, buffer.capacity() ); |
| 14 | } |
| 15 | |
| 16 | TEST(StringBufferTest, StringCast) |
| 17 | { |
nothing calls this directly
no test coverage detected