我有
ArrayList<Executable>( () -> assertTrue(true), ... )
现在我正在尝试将其转换Stream<Executable>
为使用 assertAll 的方法。
public static void assertAll(Stream<Executable> executables)
throws MultipleFailuresError
如何将 a ArrayList<Executable>
(如果没有比 ArrayList 更简洁的方法)转换为Stream<Executable>
?