Browse Source

Rename of the functional tests to integration

pull/82/head
dsanz 8 years ago
parent
commit
1dd1ccf80b
9 changed files with 9 additions and 9 deletions
  1. +1
    -1
      eShopOnContainers-ServicesAndWebApps.sln
  2. +0
    -0
      test/Services/FunctionalTests/IntegrationTests.csproj
  3. +1
    -1
      test/Services/FunctionalTests/Middleware/AutoAuthorizeMiddleware.cs
  4. +1
    -1
      test/Services/FunctionalTests/Services/Basket/RedisBasketRepositoryTests.cs
  5. +1
    -1
      test/Services/FunctionalTests/Services/Catalog/CatalogScenarioBase.cs
  6. +1
    -1
      test/Services/FunctionalTests/Services/Catalog/CatalogScenarios.cs
  7. +1
    -1
      test/Services/FunctionalTests/Services/Ordering/OrderingScenarioBase.cs
  8. +1
    -1
      test/Services/FunctionalTests/Services/Ordering/OrderingScenarios.cs
  9. +2
    -2
      test/Services/FunctionalTests/Services/Ordering/OrderingTestsStartup.cs

+ 1
- 1
eShopOnContainers-ServicesAndWebApps.sln 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


test/Services/FunctionalTests/FunctionalTests.csproj → test/Services/FunctionalTests/IntegrationTests.csproj View File


+ 1
- 1
test/Services/FunctionalTests/Middleware/AutoAuthorizeMiddleware.cs 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
{


+ 1
- 1
test/Services/FunctionalTests/Services/Basket/RedisBasketRepositoryTests.cs 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;


+ 1
- 1
test/Services/FunctionalTests/Services/Catalog/CatalogScenarioBase.cs View File

@ -1,6 +1,6 @@

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


+ 1
- 1
test/Services/FunctionalTests/Services/Catalog/CatalogScenarios.cs View File

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


+ 1
- 1
test/Services/FunctionalTests/Services/Ordering/OrderingScenarioBase.cs View File

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


+ 1
- 1
test/Services/FunctionalTests/Services/Ordering/OrderingScenarios.cs 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;


+ 2
- 2
test/Services/FunctionalTests/Services/Ordering/OrderingTestsStartup.cs 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
{


Loading…
Cancel
Save