Esempio n. 1
0
        public async Task PokemonFinder_ReturnsPokemon()
        {
            #region Arrange
            PokemonId pokemonId         = new PokemonId(PokemonIdMother.Id());
            var       pokemonRepository = new Mock <PokemonRepository>();

            pokemonRepository
            .Setup(r => r.Find(It.IsAny <PokemonId>()))
            .ReturnsAsync(PokemonMother.Pokemon());

            pokemonRepository
            .Setup(r => r.Exists(It.IsAny <PokemonId>()))
            .ReturnsAsync(true);

            var pokemonFinder = new PokemonFinder(pokemonRepository.Object);

            #endregion

            #region Act
            Pokemon pokemon = await pokemonFinder.Execute(pokemonId);

            #endregion

            #region Assert
            Assert.Equal(pokemon.PokemonId.Id, PokemonMother.Pokemon().PokemonId.Id);
            Assert.Equal(pokemon.PokemonName.Name, PokemonMother.Pokemon().PokemonName.Name);
            Assert.Equal(pokemon.PokemonTypes.Types.Select(s => s.Type).ToArray(), PokemonMother.Pokemon().PokemonTypes.Types.Select(s => s.Type).ToArray());

            #endregion
        }
Esempio n. 2
0
        public void PokemonFinder_ReturnsException()
        {
            #region Arrange
            PokemonId pokemonId         = new PokemonId(PokemonIdMother.Id());
            var       pokemonRepository = new Mock <PokemonRepository>();
            string    expectedMessage   = $"Pokemon with Id '{pokemonId.Id}' does not exist";

            pokemonRepository
            .Setup(r => r.Find(It.IsAny <PokemonId>()))
            .ReturnsAsync(PokemonMother.Pokemon());

            var pokemonFinder = new PokemonFinder(pokemonRepository.Object);

            #endregion

            #region Act
            var exception = Record.ExceptionAsync(async() => await pokemonFinder.Execute(pokemonId));

            #endregion

            #region Assert
            Assert.Equal(expectedMessage, exception.Result.Message);

            #endregion
        }
Esempio n. 3
0
 public GetPokemonById(PokemonFinder pokemonFinder)
 {
     _pokemonFinder = pokemonFinder;
 }