libcryfs/test/io/ConsoleTest_Print.cpp
2015-09-12 20:07:44 +02:00

7 lines
156 B
C++

#include "ConsoleTest.h"
TEST_F(ConsoleTest, Print) {
print("Bla Blub");
EXPECT_OUTPUT_LINE("Bla Blu", 'b'); // 'b' is the delimiter for reading
}