Adding unit test

This commit is contained in:
Eugenio Chiodo
2021-04-26 19:33:07 +02:00
parent f537d097ec
commit fc1ced2d61
5 changed files with 210 additions and 0 deletions

View File

@ -0,0 +1,20 @@
using drinkMe.Server.Services;
using drinkMe.Server.Services.Interfaces;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace drinkMe.Server.Tests
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddScoped<IDataService, DataService>()
.AddScoped<IPaymentService, PaymentService>();
}
}
}