/** * Return an instance of the class being tested. * * @return an instance of the class being tested * @see PostalRouteType * @generatedBy CodePro at 6/7/15 3:07 PM */ public PostalRouteType getFixture3() throws Exception { if (fixture3 == null) { fixture3 = new PostalRouteType(); fixture3.setPostBox(new PostBox()); fixture3.setPostalRouteNumber(new PostalRouteType.PostalRouteNumber()); fixture3.setType("0123456789"); } return fixture3; }
/** * Return an instance of the class being tested. * * @return an instance of the class being tested * @see PostalRouteType * @generatedBy CodePro at 6/7/15 3:07 PM */ public PostalRouteType getFixture2() throws Exception { if (fixture2 == null) { fixture2 = new PostalRouteType(); fixture2.setPostBox(new PostBox()); fixture2.setPostalRouteNumber(new PostalRouteType.PostalRouteNumber()); fixture2.setType(""); } return fixture2; }
/** * Run the void setType(String) method test. * * @throws Exception * @generatedBy CodePro at 6/7/15 3:07 PM */ @Test public void testSetType_fixture1_2() throws Exception { PostalRouteType fixture = getFixture1(); String value = "0123456789"; fixture.setType(value); // add additional test code here }
/** * Return an instance of the class being tested. * * @return an instance of the class being tested * @see PostalRouteType * @generatedBy CodePro at 6/7/15 3:07 PM */ public PostalRouteType getFixture4() throws Exception { if (fixture4 == null) { fixture4 = new PostalRouteType(); fixture4.setPostBox(new PostBox()); fixture4.setPostalRouteNumber(new PostalRouteType.PostalRouteNumber()); fixture4.setType("An��t-1.0.txt"); } return fixture4; }