Reorganizing the structure of the project, adding unit testing, adding PokemonService and ShakespeareService.
This commit is contained in:
16
Pokespearean.Tests/Startup.cs
Normal file
16
Pokespearean.Tests/Startup.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Pokespearean.Models;
|
||||
using Pokespearean.Services;
|
||||
|
||||
namespace Pokespearean.Tests
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.AddScoped<IPokemonService, PokemonService>();
|
||||
services.AddScoped<IShakespeareService, ShakespeareService>();
|
||||
services.Configure<Settings>(s => s.ShakespeareApi = "https://api.funtranslations.com");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user