/** * @author Edouard DUPIN * * @copyright 2014, Edouard DUPIN, all right reserved * * @license APACHE v2.0 (see license file) */ #ifndef __EXML_TEST_ALL_H__ #define __EXML_TEST_ALL_H__ #include "exmlTestCommon.h" #include TEST(TestAll, testBase) { exmlLocalTest( "\n" " \n" " \n" " Text example ...\n" "\n", "< exemple\n >\n" " \n" " \n" " \n" " Text example ...\n" " \n" "\n", -1); } TEST(TestAll, testError) { exmlLocalTest( "", "< exemple\n >\n" " \n" " >\n" " \n" " Text example ...\n" " \n" "\n", 1); } #endif