195196197198199200201202203204
dataSource = dataSourceAnnotation.value(); } if (Strings.isEmpty(dataSource)) { throw new DataSourceNotDefinedException("DataSource not defined! Please declare in arquillian.xml or by using @DataSource annotation."); } return dataSource; }
148149150151152153154155156157
dataSource = dataSourceAnnotation.value(); } if (Strings.isEmpty(dataSource)) { throw new DataSourceNotDefinedException("DataSource not defined! Please declare it in arquillian.xml or by using @DataSource annotation."); } return dataSource; }