@Test public void stream_allMatch() { boolean containVowel = games.stream().allMatch( game -> game.getName().contains("a")); assertTrue(containVowel); }
Stream find and matchjava