コード例 #1
0
ファイル: PersonTest.java プロジェクト: pshegde/TestBean
 /** This test tests that final fields cannot be set with a value in the setter */
 @Test(expected = AssertionError.class)
 public void testPassFinalFieldToSettersPerson() {
   beanTester.testSetterForField("count");
 }
コード例 #2
0
ファイル: PersonTest.java プロジェクト: pshegde/TestBean
 /** This test tests that invalidfield is passed as a field for the setter */
 @Test(expected = AssertionError.class)
 public void testPassInvalidToSettersPerson() {
   beanTester.testSetterForField("invalid");
 }
コード例 #3
0
ファイル: PersonTest.java プロジェクト: pshegde/TestBean
 /**
  * This test tests if setters are present for specific fields in the class and the names are in
  * the proper format
  */
 @Test
 public void testIndividualSettersPerson() {
   assertTrue(beanTester.testSetterForField("name"));
 }
コード例 #4
0
ファイル: PersonTest.java プロジェクト: pshegde/TestBean
 /** This test tests that exception is thrown if null is passed as a field for the setter */
 @Test(expected = IllegalArgumentException.class)
 public void testPassNullToSettersPerson() {
   beanTester.testSetterForField(null);
 }
コード例 #5
0
ファイル: AddressTest.java プロジェクト: pshegde/TestBean
 /**
  * This test tests if setters are present for specific fields in the class and the names are in
  * the proper format
  */
 @Test
 public void testIndividualSettersAddress() {
   assertTrue(beanTester.testSetterForField("zipcode"));
 }