From abe1c43c590ffc502ed83996229b3bd2edda879b Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Wed, 6 Jan 2016 19:31:04 +0300 Subject: [PATCH] Fixed unused function warning. --- indexer/indexer_tests/feature_xml_test.cpp | 77 +++++++++++----------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/indexer/indexer_tests/feature_xml_test.cpp b/indexer/indexer_tests/feature_xml_test.cpp index 068254ffdd..40651567cd 100644 --- a/indexer/indexer_tests/feature_xml_test.cpp +++ b/indexer/indexer_tests/feature_xml_test.cpp @@ -6,7 +6,7 @@ #include "base/string_utils.hpp" #include "std/sstream.hpp" - +/* namespace { struct TestSetUp @@ -48,43 +48,44 @@ void CompareFeatureXML(string const & d1, string const & d2) } } // namespace -// TODO(mgsergio): Unkomment when creation is required. -// UNIT_TEST(FeatureType_FromXMLAndBackToXML) -// { -// auto const xml = R"( -// -// -// -// -// -// -// -// -// -// )"; + TODO(mgsergio): Unkomment when creation is required. + UNIT_TEST(FeatureType_FromXMLAndBackToXML) + { + auto const xml = R"( + + + + + + + + + + )"; -// auto const feature = FeatureType::FromXML(xml); -// auto const xmlFeature = feature.ToXML(); + auto const feature = FeatureType::FromXML(xml); + auto const xmlFeature = feature.ToXML(); -// stringstream sstr; -// xmlFeature.Save(sstr); + stringstream sstr; + xmlFeature.Save(sstr); -// CompareFeatureXML(xml, sstr.str()); -// } + CompareFeatureXML(xml, sstr.str()); + } +*/