Exemplo n.º 1
0
 public void MyTestInitialize()
 {
     hookRepository = HookHelper.GetRepository <IHook>(true);
     hookRepository.Add(typeof(LogHook));
     hookRepository.Add(typeof(DiagnosticsHook));
 }
Exemplo n.º 2
0
 public void MyTestInitialize()
 {
     hookRepository = HookHelper.GetRepository <IHook>();
 }
Exemplo n.º 3
0
 public void MyTestInitialize()
 {
     hookRepository = HookHelper.GetRepository <IHook>();
     hookRepository.Add(new IHook[] { new LogHook(), new DiagnosticsHook() });
 }