(fix) Add missing @Test annotation
This commit is contained in:
parent
d1e72ebede
commit
ce178d8e87
|
@ -407,6 +407,7 @@ public class EnumUtilsTest {
|
|||
EnumUtils.processBitVector(TooMany.class, 0L);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test_processBitVectors_longClass() {
|
||||
assertEquals(EnumSet.noneOf(TooMany.class), EnumUtils.processBitVectors(TooMany.class, 0L));
|
||||
assertEquals(EnumSet.of(TooMany.A), EnumUtils.processBitVectors(TooMany.class, 1L));
|
||||
|
|
Loading…
Reference in New Issue