Alluxio / Community

New Contributor Tasks for Alluxio
20 stars 38 forks source link

[SMALLFIX] Use static imports for standard test utilities in alluxio/core/server/worker/src/test/java/alluxio/worker/block/evictor/LRUEvictorTest.java #470

Closed newnius closed 5 years ago

newnius commented 5 years ago

Change

import org.junit.Assert;

to

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertEquals;

AND

Update all

Assert.{{ method }}*

to

{{ method }}*

For example

update

    Assert.assertTrue(mGraph.getRoots().isEmpty());

to

    assertTrue(mGraph.getRoots().isEmpty());
newnius commented 5 years ago

Put the static imports before non-static imports.