public void StringToDecimal_InpotNullOrEmptyValues_ThrowsNullException(string number, int scale) { Notation notation = new Notation(scale); NUnit.Framework.Assert.Throws <ArgumentNullException>(() => StringToDecimal.ConvertingToDecimal(number, notation)); }
public void StringToDecimal_InputTooBigValues_ThrowsOverflowException(string number, int scale) { Notation notation = new Notation(scale); NUnit.Framework.Assert.Throws <OverflowException>(() => StringToDecimal.ConvertingToDecimal(number, notation)); }
public int StringToDecimal_CorrectValues_PositiveTest(string number, int scale) { Notation notation = new Notation(scale); return(StringToDecimal.ConvertingToDecimal(number, notation)); }