public void Cleanup() { this.mainModule = null; this.listenerMock = null; this.filterMock = null; this.userMock = null; this.storageMock = null; }
public void Initialize() { this.listenerMock = new Mock<IListener>(); this.filterMock = new Mock<IFilter>(); this.storageMock = new Mock<IStorage>(); this.userMock = new Mock<IUser>(); this.mainModule = new SerfidCore(this.listenerMock.Object, this.filterMock.Object, this.storageMock.Object, this.userMock.Object); }
public void Initialize() { this.listenerMock = new Mock <IListener>(); this.filterMock = new Mock <IFilter>(); this.storageMock = new Mock <IStorage>(); this.userMock = new Mock <IUser>(); this.mainModule = new SerfidCore(this.listenerMock.Object, this.filterMock.Object, this.storageMock.Object, this.userMock.Object); }