/** * @author Edouard DUPIN * * @copyright 2014, Edouard DUPIN, all right reserved * * @license APACHE v2.0 (see license file) */ #ifndef __EXML_TEST_DECLARATION_H__ #define __EXML_TEST_DECLARATION_H__ #include "exmlTestCommon.h" #include TEST(TestDeclaration, testBase) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testAttribute) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testNoQuote) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testNumberNoQuote) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testSpace1) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testSpace2) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testMultiline) { exmlLocalTest("\n", "\n", -1); } TEST(TestDeclaration, testAll) { exmlLocalTest("\n", "\n", -1); } #endif