コード例 #1
0
 @Test
 public void findingConstructorQuietlyGivesNullIfNoSuchConstructor() {
   assertNull(findConstructor(Integer.class, Object.class));
 }
コード例 #2
0
 @Test
 public void anInterfaceWithNoMethodsIsNotASingleAbstractMethodType() {
   assertNull(singleAbstractMethodOf(Serializable.class));
 }
コード例 #3
0
 @Test
 public void anInterfaceThatOverridesToStringIsNotASingleAbstractMethodType() throws Exception {
   assertNull(singleAbstractMethodOf(OverridingToString.class));
 }
コード例 #4
0
 @Test
 public void aClassIsNotASingleAbstractMethodType() {
   assertNull(singleAbstractMethodOf(String.class));
 }