public MySpecOr() {
super(alwaysSatisfied, alwaysSatisfied);
}
};
Specification mySpecOr = new MySpecOr();
assertThat(mySpecOr.satisfies(null), is(nullValue()));
}
@Test
public void notSatisfiedIfTwoAndBothAreNotOkayWithConcatenatedReason() {
class MySpecOr extends SpecificationOr {