代码拉取完成,页面将自动刷新
using NUnit.Framework;
[TestFixture]
public class ValidNumberTest
{
[TestCase("0", true)]
[TestCase("00", true)]
[TestCase("000.", true)]
[TestCase("001.2149000", true)]
[TestCase(".1231231", true)]
[TestCase("0.1", true)]
[TestCase(" 0.1 ", true)]
[TestCase("abc", false)]
[TestCase("1 a", false)]
[TestCase("2e10", true)]
[TestCase("2.14e213", true)]
[TestCase("1e233.43", false)]
[TestCase("0e12324", true)]
[TestCase("0.5e0", true)]
[TestCase("0.5e.234", false)]
[TestCase("0.5E.234", false)]
[TestCase("e902424", false)]
[TestCase("123e", false)]
[TestCase("e", false)]
[TestCase(".", false)]
[TestCase("1.e", false)]
[TestCase("e3", false)]
[TestCase("e.", false)]
[TestCase(".e6", false)]
[TestCase("-1.6454", true)]
[TestCase("-1.-6", false)]
[TestCase("-1.e-6", true)]
[TestCase("+1.e-6", true)]
[TestCase("+1.e+6", true)]
public void Test(string @string, bool expectedResult)
{
var answer = new Solution().IsNumber(@string);
Assert.AreEqual(expectedResult, answer, @string);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。