{
channel_ = getDefaultChannel();
// set test event type and name
testEvent_ = new StructuredEvent();
EventType _type = new EventType("testDomain", "testType");
FixedEventHeader _fixed = new FixedEventHeader(_type, "testing");
// complete header date
Property[] _variable = new Property[0];
testEvent_.header = new EventHeader(_fixed, _variable);
// set filterable event body data
testEvent_.filterable_data = new Property[1];
Any _personAny = getClientORB().create_any();
// prepare filterable body data
Person _p = new NotificationTestUtils(getClientORB()).getTestPerson();
Address _a = new Address();
_p.first_name = "firstname";
_p.last_name = "lastname";
_p.age = 5;
_p.phone_numbers = new String[2];
_p.phone_numbers[0] = "12345678";
_p.phone_numbers[1] = "";
_p.nv = new NamedValue[2];
_p.nv[0] = new NamedValue();
_p.nv[1] = new NamedValue();
_p.person_profession = Profession.STUDENT;
_a.street = "Takustr.";
_a.number = 9;
_a.city = "Berlin";
_p.home_address = _a;
PersonHelper.insert(_personAny, _p);
testEvent_.filterable_data[0] = new Property("person", _personAny);
testEvent_.remainder_of_body = getClientORB().create_any();
trueFilter_ = createFilter();
ConstraintExp[] _constraintExp = new ConstraintExp[1];
EventType[] _eventType = new EventType[1];
_eventType[0] = new EventType("*", "*");
_constraintExp[0] = new ConstraintExp(_eventType, "true");
trueFilter_.add_constraints(_constraintExp);
falseFilter_ = createFilter();
_constraintExp = new ConstraintExp[1];
_eventType = new EventType[1];
_eventType[0] = new EventType("*", "*");
_constraintExp[0] = new ConstraintExp(_eventType, "false");
falseFilter_.add_constraints(_constraintExp);
}