Files
yaml-cpp/test/ostream_wrapper_test.cpp
2014-03-22 19:15:49 -05:00

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());
}
}