using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Clients.Common; using HeuristicLab.Services.Hive.Common.ServiceContracts; namespace HeuristicLab.Clients.Hive.Slave.Tests { internal class ServiceLocatorMock : IServiceLocator { public Disposable GetService() { return new Disposable(new HiveServiceMock()); } } }