From 886c6070c6b76518f3d2ac8506ae976355f6ae11 Mon Sep 17 00:00:00 2001 From: Sumit Ghosh Date: Thu, 14 Oct 2021 15:28:34 +0530 Subject: [PATCH] Included globalusing for Basket.FunctionalTests project --- .../Basket.FunctionalTests/GlobalUsings.cs | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/Services/Basket/Basket.FunctionalTests/GlobalUsings.cs diff --git a/src/Services/Basket/Basket.FunctionalTests/GlobalUsings.cs b/src/Services/Basket/Basket.FunctionalTests/GlobalUsings.cs new file mode 100644 index 000000000..d3657c2d3 --- /dev/null +++ b/src/Services/Basket/Basket.FunctionalTests/GlobalUsings.cs @@ -0,0 +1,23 @@ +global using Basket.FunctionalTests.Base; +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.AspNetCore.TestHost; +global using Microsoft.eShopOnContainers.Services.Basket.API.Infrastructure.Repositories; +global using Microsoft.eShopOnContainers.Services.Basket.API.Model; +global using Microsoft.eShopOnContainers.Services.Basket.API; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Logging; +global using StackExchange.Redis; +global using System.Collections.Generic; +global using System.IO; +global using System.Net.Http; +global using System.Reflection; +global using System.Security.Claims; +global using System.Text.Json; +global using System.Text; +global using System.Threading.Tasks; +global using System; +global using Xunit;