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
|
||||
void testAcceptBiConsumer() {
|
||||
final IllegalStateException ise = new IllegalStateException();
|
||||
|
@ -698,6 +692,12 @@ class FunctionsTest {
|
|||
assertNotNull(instance);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testConstructor() {
|
||||
// We allow this, which must be an omission to make the ctor private.
|
||||
new Functions();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetAsBooleanSupplier() {
|
||||
final IllegalStateException ise = new IllegalStateException();
|
||||
|
|
Loading…
Reference in New Issue