appName property
Use this property to set and retrieve the value of the application name property. The application name is one of the 5 properties that define the baseline.
Syntax
Call syntax
NSString* configval; // give relevant initial value
config.appName = configval;
configval = config.appName
Declaration
(copy, nonatomic) NSString *appName
Type:NSString*
The application name to be configured for the test.
Remarks
If you call this method, it must be called before the call to [Eyes openWithApplicationName].
In the call to [Eyes openWithApplicationName], if you provide the application parameter, then it will override
the value set here. If you don't provide the parameter or pass a nil,
then the value set here will be used.