Beispiel #1
0
 @Test
 public void toList_A$() throws Exception {
   String value = "vvv";
   Some<String> target = new Some<String>(value);
   List<String> actual = target.toList();
   assertThat(actual, is(notNullValue()));
   assertThat(actual.size(), is(equalTo(1)));
 }