public void SetUp()
 {
     _chanceService = new MockChanceService();
     _menuFactory   = new MockMenuFactory();
     _teamFactory   = new TestTeamFactory(_chanceService, _menuFactory);
     _factory       = new GroupingFactory(_chanceService, _teamFactory, new FighterFactory());
 }
Пример #2
0
        public void SetUp()
        {
            _output        = new MockOutput();
            _input         = new MockInput();
            _chanceService = new MockChanceService();

            _relationshipManager = new GodRelationshipManager();
            FighterFactory.SetGodRelationshipManager(_relationshipManager);
            _menuFactory = new MockMenuFactory();


            _decisionManager = new DecisionManager(_relationshipManager, null, _menuFactory, _input, _output);
        }