private void TestScientificString(string biStr, int exp, string outStr)
 {
     BigInteger bi = BigInteger.Parse(biStr);
     BigDecimal bd = new BigDecimal(bi, exp);
     string result = bd.ToScientificString();
     Expect(result, EqualTo(outStr));
 }