[InlineData(5, 5, true)]    // addition
 // [InlineData(15, 5, true)]   // subtraction
 // [InlineData(2, 5, true)]    // multiplication
 // [InlineData(20, 2, true)]   // division
 // [InlineData(5, 4, true)]    // modulo
 // [InlineData(1, 1, false)]   // other combinations
 public void AnotherValidation_works(int a, int b, bool expected) =>
 _sut.AnotherValidation(a, b).Should().Be(expected);