要让VS2010识别由SpecFlow生成的mstests,您可以按照以下步骤进行操作:
using TechTalk.SpecFlow;
namespace YourNamespace
{
[Binding]
public class SpecFlowTests
{
[Given(@"your given step")]
public void GivenYourGivenStep()
{
// Implement your given step here
}
[When(@"your when step")]
public void WhenYourWhenStep()
{
// Implement your when step here
}
[Then(@"your then step")]
public void ThenYourThenStep()
{
// Implement your then step here
}
}
}
请注意,上述代码中的“your given step”、“your when step”和“your then step”应该与您的.feature文件中的步骤描述相匹配。
这样,您就可以让VS2010识别您的SpecFlow生成的mstests了。希望这些步骤对您有所帮助!
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云