> + * Tests behavior of RoleAdminApi
> + *
> + * @author Pedro Navarro
> + */
> +@Test(groups = "live", testName = "RoleAdminApiLiveTest", singleThreaded =
> true)
> +public class RoleAdminApiLiveTest extends BaseKeystoneApiLiveTest {
> +
> + private Optional<? extends RoleAdminApi> roleAdminOption;
> +
> + private Role testRole;
> +
> + @BeforeClass(groups = { "integration", "live" })
> + @Override
> + public void setup() {
> + super.setup();
> + roleAdminOption = api.getRoleAdminApi();
After having a look at the entire class, all tests require this to be present.
Throw a `SkipException` here to automatically skip all tests in this class,
showing the reason?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/303/files#r10011698