public void AreDigits_WithValidValue() { string pesel = ""; PeselInfo PeselInfo = new PeselInfo(pesel); bool expected = true; bool actual = PeselInfo.AreDigits(); Assert.AreEqual(expected, actual); }
public void AreDigits_withNoNumericValue() { string pesel = ""; PeselInfo PeselInfo = new PeselInfo(pesel); bool expected = false; bool actual = PeselInfo.AreDigits(); Assert.AreEqual(expected, actual); }