@Test
public void testTruthUnknown2() {
//Test U or U
RelationshipPredicate lP = new RelationshipPredicate(utils.getRelation(0), new SpecVar[] {utils.getVar(2), utils.getVar(3)});
RelationshipPredicate rP = new RelationshipPredicate(utils.getRelation(0), new SpecVar[] {utils.getVar(3), utils.getVar(2)});
OrPredicate pred = new OrPredicate(lP, rP);
FusionEnvironment env = new TestEnvironment(utils.getContext(1), Variant.SOUND_VARIANT);
assertEquals(ThreeValue.UNKNOWN, pred.getTruth(env, utils.getSub(0)));
}