public void SomeFalse_WhenValuesIsNull_ReturnsTrue() { //Act var result = Bool.SomeFalse(null); //Assert Assert.True(result); }
public void SomeFalse_WhenIsInvalidInput_ReturnsTrue(params bool[] values) { //Act var result = Bool.SomeFalse(values); //Assert Assert.True(result); }
public static string txtStatus(params bool[] values) { if (Bool.SomeFalse(values)) { return(txtMuted); } else { return(txtPrimary); } }