Sto cercando di ottenere piani di test utilizzando l'API TFS.TFS API TestManagementService restituisce sempre null
TfsTeamProjectCollection tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri("http://xxxxxxx:8080/tfs/DefaultCollection"));
var service = (ITestManagementService)tfs.GetService(typeof(ITestManagementService));
La variabile "servizio" restituisce sempre null.
Avete qualche idea, perché?
tfs.GetService (typeof (WorkItemStore)) restituisce l'oggetto del negozio ma ItestManagementService restituisce null – cerezza