HomeSort by relevance Sort by last modified time
    Searched refs:XmlTest (Results 1 - 2 of 2) sorted by null

  /external/tinyxml/
xmltest.cpp 29 bool XmlTest (const char* testString, const char* expected, const char* found, bool noEcho = false)
50 bool XmlTest( const char* testString, int expected, int found, bool noEcho = false )
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 ( "Value is 'Go to the'.", "Go to the", node->Value() )
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
XmlTest.java 48 public class XmlTest extends AndroidTestCase {

Completed in 66 milliseconds