Example #1
0
 public Simulacre(IEar ear, IMouth mouth, ICortex cortex, INerve nerve, ILoggerFactory logFac)
 {
     this.ear = ear;
     this.mouth = mouth;
     this.cortex = cortex;
     this.logger = logFac.GetLogger(this.GetType());
     this.nerve = nerve;
 }
Example #2
0
 public void TestInitialize()
 {
     ILoggerFactory logFac = new LoggerFactoryMock();
     nerve = new DebugNerve(logFac, "http://server/");
 }