Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/20/11 14:16:53 (13 years ago)
Author:
cneumuel
Message:

#1233

  • renamed UptimeCalendar and Appointment to Downtime
  • added service methods to delete plugins and get plugin by hash
  • made reverted TransactionManager change, made it non-static and added interface
  • moved magic numbers to application settings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Tests/Mocks/MockServiceLocator.cs

    r5599 r6452  
    33
    44namespace HeuristicLab.Clients.Hive.Tests {
    5   public class MockServiceLocator {
     5  public class MockServiceLocator : IServiceLocator {
    66    private string username;
    77    public string Username {
     
    2828      return call(GetService());
    2929    }
     30
     31    #region IServiceLocator Members
     32
     33    public void CallHiveService(Action<IHiveService> call) {
     34      // how to do this?
     35    }
     36
     37    public T CallHiveService<T>(Func<IHiveService, T> call) {
     38      // how to do this?
     39      throw new NotImplementedException();
     40    }
     41
     42    #endregion
    3043  }
    3144}
Note: See TracChangeset for help on using the changeset viewer.