- Timestamp:
- 06/20/11 14:16:53 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Tests/Mocks/MockServiceLocator.cs
r5599 r6452 3 3 4 4 namespace HeuristicLab.Clients.Hive.Tests { 5 public class MockServiceLocator {5 public class MockServiceLocator : IServiceLocator { 6 6 private string username; 7 7 public string Username { … … 28 28 return call(GetService()); 29 29 } 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 30 43 } 31 44 }
Note: See TracChangeset
for help on using the changeset viewer.