コード例 #1
0
ファイル: GenerationRunner.cs プロジェクト: byakkoder/ByaCell
 public GenerationRunner(ILifeValidator lifeValidator)
 {
     _lifeValidator = lifeValidator;
 }
コード例 #2
0
        public void Initialize()
        {
            _livingNeighborsCounter = new Mock <ILivingNeighborsCounter>();

            _lifeValidator = new LifeValidator(_livingNeighborsCounter.Object);
        }