Beispiel #1
0
 @Test
 public void isEmpty_A$() throws Exception {
   String value = "vvv";
   Some<String> target = new Some<String>(value);
   boolean actual = target.isEmpty();
   boolean expected = false;
   assertThat(actual, is(equalTo(expected)));
 }