/**
  * 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 setPostalRouteNumber(PostalRouteNumber) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 3:07 PM
   */
  @Test
  public void testSetPostalRouteNumber_fixture4_1() throws Exception {
    PostalRouteType fixture = getFixture4();
    PostalRouteType.PostalRouteNumber value = new PostalRouteType.PostalRouteNumber();

    fixture.setPostalRouteNumber(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;
 }