Explorar o código

Merge pull request #623 from Dmitry-Me/testErrorName

Test ErrorName() returns valid string after SetError()
Lee Thomason %!s(int64=8) %!d(string=hai) anos
pai
achega
3a37e64113
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      xmltest.cpp

+ 3 - 1
xmltest.cpp

@@ -1956,7 +1956,9 @@ int main( int argc, const char ** argv )
 			const XMLError error = static_cast<XMLError>(i);
 			doc.SetError( error, 0, 0, 0 );
 			XMLTest( "ErrorID() after SetError()", error, doc.ErrorID() );
-			doc.ErrorName();
+			const char* name = doc.ErrorName();
+			XMLTest( "ErrorName() after SetError()", true, name != 0 );
+			XMLTest( "ErrorName() after SetError()", true, strlen(name) > 0 );
 		}
 	}