/** @file * @author Edouard DUPIN * * @copyright 2014, Edouard DUPIN, all right reserved * * @license APACHE v2.0 (see license file) */ #include "exmlTestCommon.h" #include TEST(TestParseComment, testBase) { exmlLocalTest("\n", "\n", -1); } TEST(TestParseComment, testMultiline) { exmlLocalTest("\n", "\n", -1); } TEST(TestParseComment, testTiretInComment) { exmlLocalTest("\n", "\n", -1); } TEST(TestParseComment, testWrongEndParsing) { exmlLocalTest(" exemple-->\n", " exemple -->\n", -1); } TEST(TestParseComment, testMultipleEnd) { exmlLocalTest("\n", " exemple -->\n", 1); } TEST(TestParseComment, testEndError) { exmlLocalTest("\n", "\n", "\n", -1); } TEST(TestParseComment, testAll) { exmlLocalTest("\n", "\n", -1); }