Skip to content

Commit 2defc9a

Browse files
committed
style: remove unused imports
1 parent d7b4400 commit 2defc9a

File tree

7 files changed

+0
-16
lines changed

7 files changed

+0
-16
lines changed

src/Infrastructure/Persistence/WriteRepositoryBase.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using Microsoft.EntityFrameworkCore;
21
using WebApiTemplate.Core;
32

43
namespace WebApiTemplate.Infrastructure.Persistence;

tests/IntegrationTests/AppWebApplicationFactory.cs

-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@
33
#pragma warning disable CS8618
44

55
using System.Data.Common;
6-
using System.Linq;
7-
using System.Threading.Tasks;
8-
using Microsoft.AspNetCore.Hosting;
96
using Microsoft.AspNetCore.Mvc.Testing;
107
using Microsoft.EntityFrameworkCore;
11-
using Microsoft.Extensions.DependencyInjection;
128
using Npgsql;
139
using Respawn;
1410
using Respawn.Graph;

tests/IntegrationTests/Customers/Controllers/CreateTests.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System.Net;
2-
using System.Net.Http.Json;
3-
using System.Threading.Tasks;
42
using FluentAssertions;
53
using Microsoft.EntityFrameworkCore;
6-
using Microsoft.Extensions.DependencyInjection;
74
using WebApiTemplate.Api.Customers.Requests;
85
using WebApiTemplate.Infrastructure.Persistence;
96
using Xunit;

tests/IntegrationTests/Customers/Controllers/DeleteTests.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System.Net;
2-
using System.Net.Http.Json;
3-
using System.Threading.Tasks;
42
using FluentAssertions;
53
using Microsoft.EntityFrameworkCore;
6-
using Microsoft.Extensions.DependencyInjection;
74
using WebApiTemplate.Infrastructure.Persistence;
85
using Xunit;
96

tests/IntegrationTests/Customers/Controllers/GetByIdTests.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System.Net;
2-
using System.Net.Http.Json;
3-
using System.Threading.Tasks;
42
using FluentAssertions;
53
using Microsoft.EntityFrameworkCore;
6-
using Microsoft.Extensions.DependencyInjection;
74
using WebApiTemplate.Infrastructure.Persistence;
85
using Xunit;
96

tests/UnitTests/Customers/CreateCustomerCommandHandler/HandleTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Threading.Tasks;
21
using NSubstitute;
32
using WebApiTemplate.Application.Customers.Commands;
43
using WebApiTemplate.Core;

tests/UnitTests/Customers/GetCustomerByIdQueryHandler/HandleTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Threading.Tasks;
21
using FluentAssertions;
32
using NSubstitute;
43
using WebApiTemplate.Application.Customers.Queries;

0 commit comments

Comments
 (0)