私はTFS APIを使用してテスト計画を取得しようとしています。TFS API TestManagementServiceは常にnullを返します
TfsTeamProjectCollection tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri("http://xxxxxxx:8080/tfs/DefaultCollection"));
var service = (ITestManagementService)tfs.GetService(typeof(ITestManagementService));
変数 "service"は常にnullを返します。
あなたはどんな考えがありますか?
tfs.GetService(typeof(WorkItemStore))はストアオブジェクトを返しますが、ItestManagementServiceはnullを返します。 – cerezza