Rename of the functional tests to integration

This commit is contained in:
dsanz 2017-03-06 16:29:24 +01:00
parent e52d7e77dc
commit 1dd1ccf80b
9 changed files with 9 additions and 9 deletions

View File

@ -38,7 +38,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebMVC", "src\Web\WebMVC\We
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ordering.Infrastructure", "src\Services\Ordering\Ordering.Infrastructure\Ordering.Infrastructure.csproj", "{95F1F07C-4D92-4742-BD07-E5B805AAB651}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunctionalTests", "test\Services\FunctionalTests\FunctionalTests.csproj", "{621E7211-58D0-45FD-9600-1CB490BD930E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTests", "test\Services\FunctionalTests\IntegrationTests.csproj", "{621E7211-58D0-45FD-9600-1CB490BD930E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest", "test\Services\UnitTest\UnitTest.csproj", "{7796F5D8-31FC-45A4-B673-19DE5BA194CF}"
EndProject

View File

@ -5,7 +5,7 @@ using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace FunctionalTests.Middleware
namespace IntegrationTests.Middleware
{
class AutoAuthorizeMiddleware
{

View File

@ -1,5 +1,5 @@

//namespace FunctionalTests.Services.Basket
//namespace IntegrationTests.Services.Basket
//{
// using Microsoft.eShopOnContainers.Services.Basket.API;
// using Microsoft.eShopOnContainers.Services.Basket.API.Model;

View File

@ -1,6 +1,6 @@

namespace FunctionalTests.Services.Catalog
namespace IntegrationTests.Services.Catalog
{
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.TestHost;

View File

@ -1,4 +1,4 @@
namespace FunctionalTests.Services.Catalog
namespace IntegrationTests.Services.Catalog
{
using System.Threading.Tasks;
using Xunit;

View File

@ -1,4 +1,4 @@
namespace FunctionalTests.Services.Ordering
namespace IntegrationTests.Services.Ordering
{
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.TestHost;

View File

@ -1,4 +1,4 @@
namespace FunctionalTests.Services.Ordering
namespace IntegrationTests.Services.Ordering
{
using Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands;
using Newtonsoft.Json;

View File

@ -4,9 +4,9 @@ using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Builder;
using FunctionalTests.Middleware;
using IntegrationTests.Middleware;
namespace FunctionalTests.Services.Ordering
namespace IntegrationTests.Services.Ordering
{
public class OrderingTestsStartup : Startup
{