mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
16 lines
310 B
C++
16 lines
310 B
C++
#include "yaml-cpp/ostream_wrapper.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace {
|
|
class OstreamWrapperTest : public ::testing::Test {
|
|
protected:
|
|
};
|
|
|
|
// Tests that the Foo::Bar() method does Abc.
|
|
TEST_F(OstreamWrapperTest, ConstructNoWrite) {
|
|
YAML::ostream_wrapper wrapper;
|
|
EXPECT_STREQ("", wrapper.str());
|
|
}
|
|
}
|