> +import org.jclouds.etcd.domain.keys.Key;
> +import org.testng.annotations.BeforeClass;
> +import org.testng.annotations.Test;
> +
> +import com.google.common.base.Throwables;
> +
> +@Test(groups = "live", testName = "KeysApiLiveTest")
> +public class KeysApiLiveTest extends BaseEtcdApiLiveTest {
> +
> + private String key;
> + private String value;
> +
> + @BeforeClass
> + protected void init() {
> + key = UUID.randomUUID().toString().replaceAll("-", "");
> + value = UUID.randomUUID().toString().replaceAll("-", "");
Just seen that this "key id formatting convention" is applied everywhere.
Better create a static helper `randomKey()` to generate the key ids?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/234/files#r53013537