106107108109110111112113114115116
TestUnionHelper.insert(testUnion5_, _t5); } private Person setUpPerson() { Person _person = new Person(); Address _address = new Address(); NamedValue _nv1 = new NamedValue(); NamedValue _nv2 = new NamedValue(); Profession _p = Profession.STUDENT;
147148149150151152153154155
public void setUpTest() throws Exception { testUtils_ = new NotificationTestUtils(getORB()); Person _person = setUpPerson(); setUpTestUnion(_person); }
109110111112113114115116117118119
150151152153154155156157158
111112113114115116117118119120121
153154155156157158159160161
@Before public void setUp() throws Exception { testUtils_ = new NotificationTestUtils(getORB()); Person _person = setUpPerson(); setUpTestUnion(_person); }
6162636465666768697071
} public Person getTestPerson() { // prepare test data Person _p = new Person(); Address _a = new Address(); _p.first_name = "firstname"; _p.last_name = "lastname"; _p.age = 5;