次のテストフローを持っている:
foreach(tc in testcases)
foreach(temperature in temperatures)
{
SetTemperature(temperature);
foreach(position in positions)
{
Robot.GotoPosition(position);
DoTest(tc);
}
}
これは、さまざまな温度とさまざまな位置で外部コンポーネントをテストします。
そのような動作をアーカイブするrunner
ためのカスタムを書くことは可能ですか?nunit