古いリビジョンを取得しようとすると、次のコードにはアクションがありません。
これらの 2 つのインターフェイスは、事前に適切に
取得されます。
ITestSuiteEntry テストケース;
int testCaseRevision = testProject.TestResults
.ByTestId(testCase.Id)
.FirstOrDefault(p => p.TestRunId == testRunID).TestCaseRevision;
ITestCaseHelper helper = testProject.TestCases as ITestCaseHelper;
ITestCase testCaseProperRevision = helper.Find(testCase.Id, testCaseRevision);
testCaseProperRevision.Actionsにはアクションがありませんが、38 個あるはずです。不足しているアクションを取得するにはどうすればよいですか?
よろしくお願いします。