Searched defs:XmlTest (Results 1 - 1 of 1) sorted by relevance

/external/tinyxml/
H A Dxmltest.cpp29 bool XmlTest (const char* testString, const char* expected, const char* found, bool noEcho = false) function
50 bool XmlTest( const char* testString, int expected, int found, bool noEcho = false ) function
252 XmlTest( "Output stream correct.", string( demoEnd ).c_str(),
257 XmlTest( "Root element exists.", true, ( node != 0 && node->ToElement() ) );
258 XmlTest ( "Root element value is 'ToDo'.", "ToDo", node->Value());
261 XmlTest( "First child exists & is a comment.", true, ( node != 0 && node->ToComment() ) );
263 XmlTest( "Sibling element exists & is an element.", true, ( node != 0 && node->ToElement() ) );
264 XmlTest ( "Value is 'Item'.", "Item", node->Value() );
267 XmlTest ( "First child exists.", true, ( node != 0 && node->ToText() ) );
268 XmlTest ( "Valu
[all...]

Completed in 37 milliseconds