コード例 #1
0
ファイル: SerfidTest.cs プロジェクト: sonyas12/GitHubVS2013
 public void Cleanup()
 {
     this.mainModule = null;
     this.listenerMock = null;
     this.filterMock = null;
     this.userMock = null;
     this.storageMock = null;
 }
コード例 #2
0
 public void Cleanup()
 {
     this.mainModule   = null;
     this.listenerMock = null;
     this.filterMock   = null;
     this.userMock     = null;
     this.storageMock  = null;
 }
コード例 #3
0
ファイル: SerfidTest.cs プロジェクト: sonyas12/GitHubVS2013
 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);
 }
コード例 #4
0
 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);
 }