Skip to content

Commit 1dd1ccf

Browse files
committed
Rename of the functional tests to integration
1 parent e52d7e7 commit 1dd1ccf

9 files changed

Lines changed: 9 additions & 9 deletions

eShopOnContainers-ServicesAndWebApps.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebMVC", "src\Web\WebMVC\We
3838
EndProject
3939
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ordering.Infrastructure", "src\Services\Ordering\Ordering.Infrastructure\Ordering.Infrastructure.csproj", "{95F1F07C-4D92-4742-BD07-E5B805AAB651}"
4040
EndProject
41-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FunctionalTests", "test\Services\FunctionalTests\FunctionalTests.csproj", "{621E7211-58D0-45FD-9600-1CB490BD930E}"
41+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTests", "test\Services\FunctionalTests\IntegrationTests.csproj", "{621E7211-58D0-45FD-9600-1CB490BD930E}"
4242
EndProject
4343
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest", "test\Services\UnitTest\UnitTest.csproj", "{7796F5D8-31FC-45A4-B673-19DE5BA194CF}"
4444
EndProject
File renamed without changes.

test/Services/FunctionalTests/Middleware/AutoAuthorizeMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace FunctionalTests.Middleware
8+
namespace IntegrationTests.Middleware
99
{
1010
class AutoAuthorizeMiddleware
1111
{

test/Services/FunctionalTests/Services/Basket/RedisBasketRepositoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
//namespace FunctionalTests.Services.Basket
2+
//namespace IntegrationTests.Services.Basket
33
//{
44
// using Microsoft.eShopOnContainers.Services.Basket.API;
55
// using Microsoft.eShopOnContainers.Services.Basket.API.Model;

test/Services/FunctionalTests/Services/Catalog/CatalogScenarioBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
namespace FunctionalTests.Services.Catalog
3+
namespace IntegrationTests.Services.Catalog
44
{
55
using Microsoft.AspNetCore.Hosting;
66
using Microsoft.AspNetCore.TestHost;

test/Services/FunctionalTests/Services/Catalog/CatalogScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FunctionalTests.Services.Catalog
1+
namespace IntegrationTests.Services.Catalog
22
{
33
using System.Threading.Tasks;
44
using Xunit;

test/Services/FunctionalTests/Services/Ordering/OrderingScenarioBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FunctionalTests.Services.Ordering
1+
namespace IntegrationTests.Services.Ordering
22
{
33
using Microsoft.AspNetCore.Hosting;
44
using Microsoft.AspNetCore.TestHost;

test/Services/FunctionalTests/Services/Ordering/OrderingScenarios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace FunctionalTests.Services.Ordering
1+
namespace IntegrationTests.Services.Ordering
22
{
33
using Microsoft.eShopOnContainers.Services.Ordering.API.Application.Commands;
44
using Newtonsoft.Json;

test/Services/FunctionalTests/Services/Ordering/OrderingTestsStartup.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using System.Text;
55
using Microsoft.AspNetCore.Hosting;
66
using Microsoft.AspNetCore.Builder;
7-
using FunctionalTests.Middleware;
7+
using IntegrationTests.Middleware;
88

9-
namespace FunctionalTests.Services.Ordering
9+
namespace IntegrationTests.Services.Ordering
1010
{
1111
public class OrderingTestsStartup : Startup
1212
{

0 commit comments

Comments
 (0)