Ejemplo n.º 1
0
        public void should_generate_eggs()
        {
            _incubator.Incubate(new IncubationRequest("Warrior", 5));

            _eggGenerator.Received(1).Generate(Arg.Is <EggsDTO>(it => it.Type == "Warrior" && it.Quantity == 5));
        }