Merge pull request #623 from Dmitry-Me/testErrorName

Test ErrorName() returns valid string after SetError()
This commit is contained in:
Lee Thomason 2017-09-18 09:40:20 -07:00 committed by GitHub
commit 3a37e64113
1 changed files with 3 additions and 1 deletions

View File

@ -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 );
}
}