public void ConductGame() { var player = new Player("a"); Container.Register <IOracle, Oracle>(); var team = new Team(new List <Player> { player }, "TestTeam"); var community = new Community(); community.CreateGame("TestGame#1", DateTime.Now.ToShortDateString(), 10); team.ApplyForParticipation(community.CommunityEvents[0]); community.ConductGame(community.CommunityEvents[0]); Assert.AreEqual(1, team.Rating); }