mirror of https://github.com/AxioDL/tinyxml2.git
Cleanup and simplify checks
This commit is contained in:
parent
02d2764fd7
commit
bc6920b681
|
@ -1345,7 +1345,7 @@ int main( int argc, const char ** argv )
|
||||||
|
|
||||||
ele->DeleteAttribute( "attrib1" );
|
ele->DeleteAttribute( "attrib1" );
|
||||||
ele->DeleteAttribute( "attrib3" );
|
ele->DeleteAttribute( "attrib3" );
|
||||||
XMLTest( "Attribute order (empty)", false, ele->FirstAttribute() ? true : false );
|
XMLTest( "Attribute order (empty)", true, ele->FirstAttribute() == 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -1397,7 +1397,7 @@ int main( int argc, const char ** argv )
|
||||||
|
|
||||||
XMLHandle docH( doc );
|
XMLHandle docH( doc );
|
||||||
ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
|
ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
|
||||||
XMLTest( "Handle, dne, mutable", false, ele != 0 );
|
XMLTest( "Handle, dne, mutable", true, ele == 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -1408,10 +1408,10 @@ int main( int argc, const char ** argv )
|
||||||
XMLConstHandle docH( doc );
|
XMLConstHandle docH( doc );
|
||||||
|
|
||||||
const XMLElement* ele = docH.FirstChildElement( "element" ).FirstChild().ToElement();
|
const XMLElement* ele = docH.FirstChildElement( "element" ).FirstChild().ToElement();
|
||||||
XMLTest( "Handle, success, const", ele->Value(), "sub" );
|
XMLTest( "Handle, success, const", "sub", ele->Value() );
|
||||||
|
|
||||||
ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
|
ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
|
||||||
XMLTest( "Handle, dne, const", false, ele != 0 );
|
XMLTest( "Handle, dne, const", true, ele == 0 );
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
// Default Declaration & BOM
|
// Default Declaration & BOM
|
||||||
|
|
Loading…
Reference in New Issue