Sfoglia il codice sorgente

Merge pull request #599 from Dmitry-Me/cleanupSomeChecks

Cleanup and simplify checks
Lee Thomason 8 anni fa
parent
commit
c11a7c5ca0
1 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. 4 4
      xmltest.cpp

+ 4 - 4
xmltest.cpp

@@ -1366,7 +1366,7 @@ int main( int argc, const char ** argv )
 
 		ele->DeleteAttribute( "attrib1" );
 		ele->DeleteAttribute( "attrib3" );
-		XMLTest( "Attribute order (empty)", false, ele->FirstAttribute() ? true : false );
+		XMLTest( "Attribute order (empty)", true, ele->FirstAttribute() == 0 );
 	}
 
 	{
@@ -1418,7 +1418,7 @@ int main( int argc, const char ** argv )
 
 		XMLHandle docH( doc );
 		ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
-		XMLTest( "Handle, dne, mutable", false, ele != 0 );
+		XMLTest( "Handle, dne, mutable", true, ele == 0 );
 	}
 
 	{
@@ -1429,10 +1429,10 @@ int main( int argc, const char ** argv )
 		XMLConstHandle docH( doc );
 
 		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();
-		XMLTest( "Handle, dne, const", false, ele != 0 );
+		XMLTest( "Handle, dne, const", true, ele == 0 );
 	}
 	{
 		// Default Declaration & BOM