コード例 #1
0
ファイル: TestEventLogic.cs プロジェクト: Rabka/BDSA2014
 public void SetUp(int i)
 {
     seasonStub = new SeasonStub();
     seasonStub.CurrentAccount = new Account("account", "u", "e", false);
     eventLogic = new EventLogic(seasonStub);
 }
コード例 #2
0
ファイル: EventsComposite.cs プロジェクト: Rabka/BDSA2014
 public void Update(EventLogic eventLogic)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: TestIntegrationES.cs プロジェクト: Rabka/BDSA2014
 public void SetUp()
 {
     season = new Season();
     season.CurrentAccount = new Account("account", "u", "e", false);
     eventLogic = new EventLogic(season);
 }