コード例 #1
0
ファイル: TfsWorkItemTests.cs プロジェクト: qanh96/WordToTFS
 private void RemoveExistingLinksOfGivenLinkTypeFromWorkItem(IConfigurationLinkItem linkConfiguration, IWorkItem workItem)
 {
     workItem.AddLinks(
         _adapter,
         new int[] { },
         linkConfiguration.LinkValueType,
         true);
     InvalidateTestIfNotEqual(0, GetIdsOfLinksOfGivenLinkTypeFromWorkItem(linkConfiguration, workItem).Length, "workItem.AddLinks() did not deleted all links successfully.");
 }