private BooleanDatum trueBooleanDatum2;
private BooleanDatum falseBooleanDatum;
@BeforeMethod(alwaysRun = true)
public void setUp() throws Exception {
trueBooleanDatum1 = new BooleanDatum(true);
trueBooleanDatum2 = new BooleanDatum(true);
falseBooleanDatum = new BooleanDatum(false);
}