/* * 3 covered goals: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getAny()Ljava/util/List;: I4 Branch 3 IFNONNULL L219 - true * 2 oasis.names.tc.ciq.xsdschema.xal._2.Department.getAny()Ljava/util/List;: I4 Branch 3 IFNONNULL L219 - false * 3 oasis.names.tc.ciq.xsdschema.xal._2.Department.<init>()V: root-Branch */ @Test public void test16() throws Throwable { Department department0 = new Department(); List<Object> list0 = department0.getAny(); List<Object> list1 = department0.getAny(); assertNotNull(list1); assertSame(list1, list0); }
/* * 2 covered goals: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getAddressLine()Ljava/util/List;: I4 Branch 1 IFNONNULL L113 - true * 2 oasis.names.tc.ciq.xsdschema.xal._2.Department.getAddressLine()Ljava/util/List;: I4 Branch 1 IFNONNULL L113 - false */ @Test public void test14() throws Throwable { Department department0 = new Department(); List<AddressLine> list0 = department0.getAddressLine(); List<AddressLine> list1 = department0.getAddressLine(); assertNotNull(list1); assertSame(list1, list0); }
/* * 2 covered goals: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getDepartmentName()Ljava/util/List;: I4 Branch 2 IFNONNULL L142 - true * 2 oasis.names.tc.ciq.xsdschema.xal._2.Department.getDepartmentName()Ljava/util/List;: I4 Branch 2 IFNONNULL L142 - false */ @Test public void test15() throws Throwable { Department department0 = new Department(); List<Department.DepartmentName> list0 = department0.getDepartmentName(); List<Department.DepartmentName> list1 = department0.getDepartmentName(); assertNotNull(list1); assertSame(list1, list0); }
/* * 1 covered goal: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getOtherAttributes()Ljava/util/Map;: root-Branch */ @Test public void test12() throws Throwable { Department department0 = new Department(); Map<QName, String> map0 = department0.getOtherAttributes(); assertEquals(true, map0.isEmpty()); }
/* * 1 covered goal: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.setMailStop(Loasis/names/tc/ciq/xsdschema/xal/_2/MailStopType;)V: root-Branch */ @Test public void test13() throws Throwable { Department department0 = new Department(); department0.setMailStop((MailStopType) null); assertNull(department0.getType()); }
/* * 1 covered goal: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getType()Ljava/lang/String;: root-Branch */ @Test public void test11() throws Throwable { Department department0 = new Department(); String string0 = department0.getType(); assertNull(string0); }
/* * 1 covered goal: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getMailStop()Loasis/names/tc/ciq/xsdschema/xal/_2/MailStopType;: root-Branch */ @Test public void test10() throws Throwable { Department department0 = new Department(); MailStopType mailStopType0 = department0.getMailStop(); assertNull(mailStopType0); }
/* * 1 covered goal: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.setType(Ljava/lang/String;)V: root-Branch */ @Test public void test9() throws Throwable { Department department0 = new Department(); department0.setType(""); assertEquals("", department0.getType()); }
/* * 1 covered goal: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.getPostalCode()Loasis/names/tc/ciq/xsdschema/xal/_2/PostalCode;: root-Branch */ @Test public void test8() throws Throwable { Department department0 = new Department(); PostalCode postalCode0 = department0.getPostalCode(); assertNull(postalCode0); }
/* * 2 covered goals: * 1 oasis.names.tc.ciq.xsdschema.xal._2.Department.setPostalCode(Loasis/names/tc/ciq/xsdschema/xal/_2/PostalCode;)V: root-Branch * 2 oasis.names.tc.ciq.xsdschema.xal._2.Department.<init>()V: root-Branch */ @Test public void test7() throws Throwable { Department department0 = new Department(); department0.setPostalCode((PostalCode) null); assertNull(department0.getType()); }