SpecFlowは素晴らしいです-そしてそれは私たちが適切な統合テストを行うのに非常に役立ちます。
私が疑問に思っていたのは、SpecFlowに機能コードビハインドファイルで作成するテストクラスに追加のNUnit属性を追加するように指示する方法があるかどうかです。
現在、私のテストクラスは次のように生成されます。
[System.CodeDom.Compiler.GeneratedCodeAttribute("TechTalk.SpecFlow", "1.8.1.0")]
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[NUnit.Framework.TestFixtureAttribute()]
[NUnit.Framework.DescriptionAttribute("Some action description here")]
public partial class MySampleFeature
{
......
}
SpecFlowに、テストのカテゴリを定義するためにNUnit属性を追加するように指示する方法はありますか?次のようになります。
[System.CodeDom.Compiler.GeneratedCodeAttribute("TechTalk.SpecFlow", "1.8.1.0")]
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[NUnit.Framework.TestFixtureAttribute()]
[NUnit.Framework.DescriptionAttribute("Some action description here")]
[NUnit.Framework.Category("LongRunningTests")] <== add this "Category" attribute
public partial class MySampleFeature
{
......
}
生成されたコードビハインドにこれを手動で追加するのは無駄です。次にSpecFlowがそのコードビハインドを再生成するときは、もう一度実行することを覚えておく必要があります(おそらく、忘れてしまいます)。
そして、その機能がSpecFlowにまだ存在しない場合、これを追加するように申請するにはどうすればよいですか?:-)