public void SetUp()
        {
            _archetypeService      = Substitute.For <IArchetypeService>();
            _archetypeCardsService = Substitute.For <IArchetypeCardsService>();

            _sut = new ArchetypeCardProcessor(_archetypeService, _archetypeCardsService);
        }
        public void Setup()
        {
            _archetypeWebPage      = Substitute.For <IArchetypeWebPage>();
            _archetypeService      = Substitute.For <IArchetypeService>();
            _archetypeCardsService = Substitute.For <IArchetypeCardsService>();
            _config = Substitute.For <IConfig>();

            _sut = new CardsByArchetypeItemProcessor(_archetypeWebPage, _archetypeService, _archetypeCardsService, _config);
        }
Beispiel #3
0
 public CardsByArchetypeItemProcessor
 (
     IArchetypeWebPage archetypeWebPage,
     IArchetypeService archetypeService,
     IArchetypeCardsService archetypeCardsService,
     IConfig config
 )
 {
     _archetypeWebPage      = archetypeWebPage;
     _archetypeService      = archetypeService;
     _archetypeCardsService = archetypeCardsService;
     _config = config;
 }
Beispiel #4
0
 public ArchetypeCardProcessor(IArchetypeService archetypeService, IArchetypeCardsService archetypeCardsService)
 {
     _archetypeService      = archetypeService;
     _archetypeCardsService = archetypeCardsService;
 }