public void Or_Theory(IMaybe <int> m1, IMaybe <int> m2, IMaybe <int> expectation) { // arrange - theory // act var result = m1.Or(m2); // assert Assert.Equal(expectation, result); }