我有
ArrayList<Executable>( () -> assertTrue(true), ... )
现在我正在尝试将其转换为Stream<Executable>
以使用assertAll方法。
public static void assertAll(Stream<Executable> executables)
throws MultipleFailuresError
如何将ArrayList<Executable>
(如果没有比ArrayList更清晰的方式)转换为Stream<Executable>
?
答案 0 :(得分:3)
只需调用实现Collection
的所有类继承的stream()
方法:
assertAll(executableList.stream());
请注意,如果您已经可以使用ArrayList
的元素,则可以将它们传递给assertAll
,因为有一个overloaded method需要输入varargs:
assertAll(() -> assertTrue(true), ...)
这样就无需创建ArrayList
或Stream
。