MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / START_SECTION

Function START_SECTION

src/tests/class_tests/openms/source/LogStream_test.cpp:94–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92LogStream* nullPointer = nullptr;
93
94START_SECTION(LogStream(LogStreamBuf *buf=0, bool delete_buf=true, std::ostream* stream))
95{
96 LogStream* l1 = new LogStream((LogStreamBuf*)nullptr);
97 TEST_NOT_EQUAL(l1, nullPointer)
98 delete l1;
99
100 LogStreamBuf* lb2(new LogStreamBuf());
101 LogStream* l2 = new LogStream(lb2);
102 TEST_NOT_EQUAL(l2, nullPointer)
103 delete l2;
104}
105END_SECTION
106
107START_SECTION((virtual ~LogStream()))

Callers 1

LogStream_test.cppFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected