*
* @param testClass
*/
@SuppressWarnings("cast")
public static void loadTestBeanConfig(Class<?> testClass) {
TestConfigProvider configProvider = (TestConfigProvider) testClass.getAnnotation(TestConfigProvider.class);
if (configProvider != null) {
try {
loadConfigBeans(configProvider.value());
} catch (IllegalArgumentException e) {
throw new RuntimeException(e);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
} catch (InvocationTargetException e) {