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