无法解析比较()和reverseOrder()的方法

时间:2019-01-28 20:42:47

标签: java unit-testing junit

该测试验证了飞机分类方法的正确性。请告诉我,为什么comparison()和reverseOrder()为什么写“无法解析方法”?我怎样才能解决这个问题?

@Test
public void testPlanesSortedByMaxLoadCapacity() {
    Airport airport = new Airport(planes);
    airport.sortByMaxLoadCapacity();

    List<? extends Plane> sortedPlanes = airport.getPlanes();
    planes.sort(comparing(Plane::getMaxLoadCapacity, reverseOrder()));
    Assert.assertEquals(planes, sortedPlanes);
}

我真的需要你的帮助

0 个答案:

没有答案