@Test(dependsOnMethods = { "IdmCleanup" })
@Test(groups = { "server" })
public void Cleanup()
throws IdRepoException, SSOException
{
But got an error? How can I achieve this (both dependsOnMethods and groups annotation for a given method?)
Thanks
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.opensymphony.com/thread.jspa?threadID=40930&messageID=81502#81502
Can I specify multiple annotation for a method? This is what I tried to do:
@Test(dependsOnMethods = { "IdmCleanup" })
@Test(groups = { "server" })
public void Cleanup()
throws IdRepoException, SSOException
{
But got an error? How can I achieve this (both dependsOnMethods and groups annotation for a given method?)