jclouds-devs,
gmail auto-completed my last message to the old list, so let's try this
again...
I have a situation where I want to test Swift container limits (>10k
objects) via a live test. This would be more of the category of "stress"
test, but do we really have that notion in jclouds?
I don't believe that this is the kind of test case that would be run with
every single execution of the live tests, so I am not clear on which
direction to go.
What have others done in the past for test cases that might be *very* long
running, and only run every so often? Has this been solved in the past?
I believe that I could add a TestNG group in the @Test annotation like this
on the actual method:
@Test(groups = {"live", "stress"} )
public voide testContainerLimits() {
...
}
Then I can just specify the groups I want to run, and away we go!
WDYT? Any insight is appreciated, thanks!
/jd