public void EqualsOtherSutReturnsCorrectResult( int sutAmount, int otherAmount, bool expected) { var sut = new Vat(sutAmount); var other = new Vat(otherAmount); var actual = sut.BothEquals(other); Assert.True(actual.All(expected.Equals)); }