예제 #1
0
        public void Setup()
        {
            _config            = Substitute.For <IConfig>();
            _cardWebPage       = Substitute.For <ICardWebPage>();
            _yugiohCardService = Substitute.For <IYugiohCardService>();

            _sut = new SemanticSearchNormalMonstersProcessor(_config, _cardWebPage, _yugiohCardService);
        }
        public void Setup()
        {
            _config            = Substitute.For <IConfig>();
            _cardWebPage       = Substitute.For <ICardWebPage>();
            _yugiohCardService = Substitute.For <IYugiohCardService>();

            _sut = new CardItemProcessor(_config, _cardWebPage, _yugiohCardService);
        }
예제 #3
0
 public SemanticSearchFlipMonstersProcessor(IConfig config, ICardWebPage cardWebPage, IYugiohCardService yugiohCardService)
 {
     _config            = config;
     _cardWebPage       = cardWebPage;
     _yugiohCardService = yugiohCardService;
 }
예제 #4
0
 public CardItemProcessor(IConfig config, ICardWebPage cardWebPage, IYugiohCardService yugiohCardService)
 {
     _config            = config;
     _cardWebPage       = cardWebPage;
     _yugiohCardService = yugiohCardService;
 }