示例#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;
 }
 public ArticleDataFlow(ICardWebPage cardWebPage, IYugiohCardQueue yugiohCardQueue)
 {
     _cardWebPage     = cardWebPage;
     _yugiohCardQueue = yugiohCardQueue;
 }
示例#5
0
 public CardItemProcessor(IConfig config, ICardWebPage cardWebPage, IYugiohCardService yugiohCardService)
 {
     _config            = config;
     _cardWebPage       = cardWebPage;
     _yugiohCardService = yugiohCardService;
 }
 public void SetUp()
 {
     _yugiohCardQueue = Substitute.For <IYugiohCardQueue>();
     _cardWebPage     = Substitute.For <ICardWebPage>();
     _sut             = new ArticleDataFlow(_cardWebPage, _yugiohCardQueue);
 }