*/
protected String getWebappResourcePath()
{
TestConfig testConfig = getTestJavaClass().getAnnotation(TestConfig.class);
if (testConfig != null && testConfig.webappResourcePath() != null &&
!"testClassResourcePackage".equals(testConfig.webappResourcePath()))
{
return testConfig.webappResourcePath();
}
return getTestJavaClass().getName().substring(0,
getTestJavaClass().getName().lastIndexOf('.')).replace('.', '/')