ENH: increase coverage

This commit is contained in:
Bill Hoffman
2002-05-23 13:23:35 -04:00
parent 14b07c0973
commit 2d9e5edb27
8 changed files with 63 additions and 24 deletions

View File

@@ -691,6 +691,20 @@ int main()
cmFailed("ESCAPE_QUOTES is not working");
}
// ----------------------------------------------------------------------
// Test cmSystemTools::UpperCase
std::string str = "abc";
std::string strupper = "ABC";
if(cmSystemTools::UpperCase(str) == strupper)
{
cmPassed("cmSystemTools::UpperCase is working");
}
else
{
cmFailed("cmSystemTools::UpperCase is working");
}
// ----------------------------------------------------------------------
// Summary