Application's name test.
The Application provider must assign a display name to each Application
Result result = getInitializedResult();
String appName = descriptor.getName();
if (appName != null && appName.length() > 0 ) {
// as long as it's not blank, test should pass
result.passed
(smh.getLocalString
(getClass().getName() + ".passed",
"Application display name is : [ {0} ]",
new Object [] {appName}));
} else {
// it's blank, test should not pass
result.failed
(smh.getLocalString
(getClass().getName() + ".failed",
"Error: Application display name cannot be blank."));
}
return result;