Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

4) (optional) remove any other uses of @SuppressWarnings

5) add DistributedTestRule add DistributedRule and CacheRule

Code Block
@Rule
public DistributedRule distributedRule = new DistributedRule();

@Rule
public CacheRule cacheRule = new CacheRule();

...

Code Block
@Before
public void setUp() throws Exception {
  server1 = getHost(0).getVM(0);
  client1 = getHost(0).getVM(1);
}

7) delete any lines that instantiate CacheRegionClearStatsDUnitTest

...

14) replace any WaitCriterion with AwailityAwaitility

15) delete any dead code or commented out code

...