Sort members.
This commit is contained in:
parent
9d1c7bc17c
commit
133327272a
|
@ -235,12 +235,6 @@ class FunctionsTest {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testConstructor() {
|
|
||||||
// We allow this, which must be an omission to make the ctor private.
|
|
||||||
new Functions();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testAcceptBiConsumer() {
|
void testAcceptBiConsumer() {
|
||||||
final IllegalStateException ise = new IllegalStateException();
|
final IllegalStateException ise = new IllegalStateException();
|
||||||
|
@ -698,6 +692,12 @@ class FunctionsTest {
|
||||||
assertNotNull(instance);
|
assertNotNull(instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testConstructor() {
|
||||||
|
// We allow this, which must be an omission to make the ctor private.
|
||||||
|
new Functions();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetAsBooleanSupplier() {
|
public void testGetAsBooleanSupplier() {
|
||||||
final IllegalStateException ise = new IllegalStateException();
|
final IllegalStateException ise = new IllegalStateException();
|
||||||
|
|
Loading…
Reference in New Issue