diff --git a/trunk/ConsoleDataMigration/sources/tests/googletest/SimpleXmlPreprocessor/testSimpleXmlPreprocessor.cpp b/trunk/ConsoleDataMigration/sources/tests/googletest/SimpleXmlPreprocessor/testSimpleXmlPreprocessor.cpp index 2247e67..a451392 100644 --- a/trunk/ConsoleDataMigration/sources/tests/googletest/SimpleXmlPreprocessor/testSimpleXmlPreprocessor.cpp +++ b/trunk/ConsoleDataMigration/sources/tests/googletest/SimpleXmlPreprocessor/testSimpleXmlPreprocessor.cpp @@ -9,6 +9,7 @@ namespace { const char testStr[] = "13269392255870117179924184EJA20305940JPN1324339327000000400000FEEB400,000400000FEEB000"; +const char resultStr[] = "13269392255870117179924184EJA20305940JPN1324339327000000400000FEEB400,000400000FEEB000"; } @@ -18,6 +19,5 @@ TEST(testSimpleXmlPreprocessor, Canonicalize) std::string str(testStr); pp.Canonicalize(str); - std::cout << str << std::endl; - + ASSERT_STREQ(resultStr, str.c_str()); }