public void FractionInput_ShouldReturnCorrectValueForOctalConversion()
 {
     Assert.AreEqual("17,101422335136152376", bin4.GetOctal());
     Assert.AreEqual("17,101422335136152376", bin5.GetOctal());
 }
 public void IntegerInput_ShouldReturnCorrectValueForOctalConversion()
 {
     Assert.AreEqual("12", bin2.GetOctal());
     Assert.AreEqual("12", bin3.GetOctal());
 }
 public void ShouldReturnEmptyStringForSeparatorMissmatchInputInGetOctalMethod()
 {
     bin9.GetOctal();
 }
 public void ShouldThrowEceptionForWhitespaceStringInGetOctalMethod()
 {
     bin8.GetOctal();
 }
 public void ShouldThrowAnExceptionForEmptyStringInGetOctalMethod()
 {
     bin7.GetOctal();
 }
 public void ShouldThrowAnExceptionForNullStringInGetOctalMethod()
 {
     bin6.GetOctal();
 }