在jasmine v2.1.1中,我曾经:
int num;
string prvnicislo;
prvnicislo = Console.ReadLine();
while (true)
{
if (int.TryParse(prvnicislo, out num))
{
Convert.ToInt32(prvnicislo);
}
else
{
Console.WriteLine("'{0}' is not int, try it again:", prvnicislo);
prvnicislo = Console.ReadLine();
}
}
Console.WriteLine("Hi");
但是在更新到Jasmine v2.5.2之后,我再也不能这样了......看起来var passed = jasmine.getEnv().currentSpec.results().passed();
已经停止了。如果没有自定义报告者,我如何知道测试是否通过?