Sort members.

This commit is contained in:
Gary Gregory 2020-06-14 14:59:02 -04:00
parent 9d1c7bc17c
commit 133327272a
1 changed files with 6 additions and 6 deletions

View File

@ -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();