Пример #1
0
 public void DeletedWorkspace(int testWorkspaceID)
 {
     using (var client = TestEnvironment.Instance.ServicesManager.CreateProxy <IRSAPIClient>(Relativity.API.ExecutionIdentity.System))
     {
         DeleteWorkspace.Delete(client, testWorkspaceID);
     }
 }
Пример #2
0
 public void Execute_TestFixtureTeardown()
 {
     if (_workspaceCreatedByTest)
     { //-- delete the workspace created by the test execution
         DeleteWorkspace.Delete(_client, _workspaceId);
     }
 }