public void WhenFormatMaskIsCEPThenToMaskedStringShouldReturnMaskedString(string source, string targetMaskedString) { string maskedString = MaskUtil.ToMaskedString(source, StringMask.CEP); Assert.AreEqual(targetMaskedString, maskedString); }
public void WhenFormatMaskStringAndSourceStringAreValidThenToMaskedStringShouldReturnMaskedString(string source, string formatMask, string targetMaskedString) { string maskedString = MaskUtil.ToMaskedString(source, formatMask); Assert.AreEqual(targetMaskedString, maskedString); }
public void WhenFormatMaskStringAndSourceStringAreDifferentLengthThenToMaskedStringShouldThrowArgumentException() { Assert.ThrowsException <ArgumentException>(() => MaskUtil.ToMaskedString("00000", "#")); }
public void WhenFormatMaskStringThenToMaskedStringShouldThrowArgumentNullException() { Assert.ThrowsException <ArgumentNullException>(() => MaskUtil.ToMaskedString("00000", null)); }
public void WhenSourceStringIsNullThenToMaskedStringShouldThrowArgumentException() { Assert.ThrowsException <ArgumentNullException>(() => MaskUtil.ToMaskedString(null, StringMask.CNPJ)); }