有沒有辦法知道何時從運行測試方法調用代碼?如何在代碼中告訴我們是否從testmethod運行.net test
bool MyMethod()
{
if (/* are we running a test? */)
{
return true; // otherwise this will fail from the automated build script
}
else
{
// run the proper code
}
}
,並請饒了我「這是一個非常糟糕的主意」意見:)
這取決於你的測試框架,請詳細說明。 – 2010-03-15 11:36:08
這是一個非常糟糕的主意。一個非常糟糕的主意。一個非常糟糕的主意。 – Will 2010-03-15 11:54:08