Skip to content

Commit db9778e

Browse files
author
Bart Koelman
committed
Auto-adjust namespaces
1 parent c7000b8 commit db9778e

File tree

93 files changed

+93
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+93
-15
lines changed

test/JsonApiDotNetCoreExampleTests/ExampleFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using JsonApiDotNetCoreExample.Data;
44
using JsonApiDotNetCoreExample.Models;
55
using Microsoft.Extensions.DependencyInjection;
6+
using TestBuildingBlocks;
67
using Person = JsonApiDotNetCoreExample.Models.Person;
78

89
namespace JsonApiDotNetCoreExampleTests

test/JsonApiDotNetCoreExampleTests/IntegrationTestContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using JsonApiDotNetCoreExample;
22
using Microsoft.EntityFrameworkCore;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/CompositeKeys/CompositeKeyTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCore.Serialization.Objects;
88
using Microsoft.EntityFrameworkCore;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.CompositeKeys

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ContentNegotiation/AcceptHeaderTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using FluentAssertions;
55
using JsonApiDotNetCore.Middleware;
66
using JsonApiDotNetCore.Serialization.Objects;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ContentNegotiation

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ContentNegotiation/ContentTypeHeaderTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using FluentAssertions;
44
using JsonApiDotNetCore.Middleware;
55
using JsonApiDotNetCore.Serialization.Objects;
6+
using TestBuildingBlocks;
67
using Xunit;
78

89
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ContentNegotiation

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ControllerActionResults/ActionResultTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Threading.Tasks;
33
using FluentAssertions;
44
using JsonApiDotNetCore.Serialization.Objects;
5+
using TestBuildingBlocks;
56
using Xunit;
67

78
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ControllerActionResults

test/JsonApiDotNetCoreExampleTests/IntegrationTests/CustomRoutes/ApiControllerAttributeTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Threading.Tasks;
33
using FluentAssertions;
44
using JsonApiDotNetCore.Serialization.Objects;
5+
using TestBuildingBlocks;
56
using Xunit;
67

78
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.CustomRoutes

test/JsonApiDotNetCoreExampleTests/IntegrationTests/CustomRoutes/CustomRouteFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.CustomRoutes
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/CustomRoutes/CustomRouteTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Threading.Tasks;
44
using FluentAssertions;
55
using JsonApiDotNetCore.Serialization.Objects;
6+
using TestBuildingBlocks;
67
using Xunit;
78

89
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.CustomRoutes

test/JsonApiDotNetCoreExampleTests/IntegrationTests/EagerLoading/EagerLoadingFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.EagerLoading
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/EagerLoading/EagerLoadingTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using JsonApiDotNetCore.Configuration;
55
using JsonApiDotNetCore.Serialization.Objects;
66
using Microsoft.EntityFrameworkCore;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.EagerLoading

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ExceptionHandling/ExceptionHandlerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using Microsoft.Extensions.DependencyInjection;
99
using Microsoft.Extensions.Logging;
1010
using Newtonsoft.Json.Linq;
11+
using TestBuildingBlocks;
1112
using Xunit;
1213

1314
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ExceptionHandling

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Filtering/FilterDataTypeTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using JsonApiDotNetCore.Configuration;
99
using JsonApiDotNetCore.Serialization.Objects;
1010
using Microsoft.Extensions.DependencyInjection;
11+
using TestBuildingBlocks;
1112
using Xunit;
1213

1314
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Filtering

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Filtering/FilterDepthTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using JsonApiDotNetCoreExample.Data;
1111
using JsonApiDotNetCoreExample.Models;
1212
using Microsoft.Extensions.DependencyInjection;
13+
using TestBuildingBlocks;
1314
using Xunit;
1415

1516
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Filtering

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Filtering/FilterOperatorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using JsonApiDotNetCore.Queries.Expressions;
1010
using JsonApiDotNetCore.Serialization.Objects;
1111
using Microsoft.Extensions.DependencyInjection;
12+
using TestBuildingBlocks;
1213
using Xunit;
1314

1415
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Filtering

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Filtering/FilterTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCoreExample.Data;
88
using JsonApiDotNetCoreExample.Models;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Filtering

test/JsonApiDotNetCoreExampleTests/IntegrationTests/IdObfuscation/IdObfuscationTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using FluentAssertions;
44
using JsonApiDotNetCore.Serialization.Objects;
55
using Microsoft.EntityFrameworkCore;
6+
using TestBuildingBlocks;
67
using Xunit;
78

89
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.IdObfuscation

test/JsonApiDotNetCoreExampleTests/IntegrationTests/IdObfuscation/ObfuscationFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.IdObfuscation
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Includes/IncludeTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
using JsonApiDotNetCoreExample.Data;
1212
using JsonApiDotNetCoreExample.Models;
1313
using Microsoft.Extensions.DependencyInjection;
14+
using TestBuildingBlocks;
1415
using Xunit;
1516

1617
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Includes

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Links/AbsoluteLinksWithNamespaceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCore.Serialization.Objects;
88
using JsonApiDotNetCoreExampleTests.Startups;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Links

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Links/AbsoluteLinksWithoutNamespaceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCore.Serialization.Objects;
88
using JsonApiDotNetCoreExampleTests.Startups;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Links

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Links/LinksFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Links
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Links/RelativeLinksWithNamespaceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCore.Serialization.Objects;
88
using JsonApiDotNetCoreExampleTests.Startups;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Links

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Links/RelativeLinksWithoutNamespaceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCore.Serialization.Objects;
88
using JsonApiDotNetCoreExampleTests.Startups;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Links

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Logging/LoggingTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCoreExample.Data;
88
using Microsoft.Extensions.DependencyInjection;
99
using Microsoft.Extensions.Logging;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Logging

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Meta/ResourceMetaTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using JsonApiDotNetCoreExample;
77
using JsonApiDotNetCoreExample.Data;
88
using JsonApiDotNetCoreExample.Models;
9+
using TestBuildingBlocks;
910
using Xunit;
1011

1112
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Meta

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Meta/ResponseMetaTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using JsonApiDotNetCoreExample.Data;
99
using JsonApiDotNetCoreExample.Models;
1010
using Microsoft.Extensions.DependencyInjection;
11+
using TestBuildingBlocks;
1112
using Xunit;
1213

1314
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Meta

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Meta/TopLevelCountTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCoreExample.Data;
88
using JsonApiDotNetCoreExample.Models;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Meta

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ModelStateValidation/ModelStateValidationTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using FluentAssertions;
55
using JsonApiDotNetCore.Serialization.Objects;
66
using JsonApiDotNetCoreExampleTests.Startups;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ModelStateValidation

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ModelStateValidation/NoModelStateValidationTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Threading.Tasks;
33
using FluentAssertions;
44
using JsonApiDotNetCore.Serialization.Objects;
5+
using TestBuildingBlocks;
56
using Xunit;
67

78
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ModelStateValidation

test/JsonApiDotNetCoreExampleTests/IntegrationTests/NamingConventions/KebabCasingTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using FluentAssertions;
55
using JsonApiDotNetCore.Serialization.Objects;
66
using Microsoft.EntityFrameworkCore;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.NamingConventions

test/JsonApiDotNetCoreExampleTests/IntegrationTests/NamingConventions/SwimmingFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.NamingConventions
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/NonJsonApiControllers/NonJsonApiControllerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using FluentAssertions;
66
using JsonApiDotNetCoreExample;
77
using Microsoft.AspNetCore.Mvc.Testing;
8+
using TestBuildingBlocks;
89
using Xunit;
910

1011
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.NonJsonApiControllers

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Pagination/PaginationWithTotalCountTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using JsonApiDotNetCoreExample.Data;
1111
using JsonApiDotNetCoreExample.Models;
1212
using Microsoft.Extensions.DependencyInjection;
13+
using TestBuildingBlocks;
1314
using Xunit;
1415

1516
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Pagination

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Pagination/PaginationWithoutTotalCountTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCoreExample.Data;
88
using JsonApiDotNetCoreExample.Models;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Pagination

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Pagination/RangeValidationTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCoreExample.Data;
88
using JsonApiDotNetCoreExample.Models;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Pagination

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Pagination/RangeValidationWithMaximumTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using JsonApiDotNetCoreExample;
77
using JsonApiDotNetCoreExample.Data;
88
using Microsoft.Extensions.DependencyInjection;
9+
using TestBuildingBlocks;
910
using Xunit;
1011

1112
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Pagination

test/JsonApiDotNetCoreExampleTests/IntegrationTests/QueryStrings/QueryStringFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.QueryStrings
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/QueryStrings/QueryStringTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using JsonApiDotNetCore.Configuration;
55
using JsonApiDotNetCore.Serialization.Objects;
66
using Microsoft.Extensions.DependencyInjection;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.QueryStrings

test/JsonApiDotNetCoreExampleTests/IntegrationTests/QueryStrings/SerializerDefaultValueHandlingTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using JsonApiDotNetCore.Serialization.Objects;
77
using Microsoft.Extensions.DependencyInjection;
88
using Newtonsoft.Json;
9+
using TestBuildingBlocks;
910
using Xunit;
1011

1112
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.QueryStrings

test/JsonApiDotNetCoreExampleTests/IntegrationTests/QueryStrings/SerializerNullValueHandlingTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using JsonApiDotNetCore.Serialization.Objects;
77
using Microsoft.Extensions.DependencyInjection;
88
using Newtonsoft.Json;
9+
using TestBuildingBlocks;
910
using Xunit;
1011

1112
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.QueryStrings

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Creating/CreateResourceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using JsonApiDotNetCore.Serialization.Objects;
99
using Microsoft.EntityFrameworkCore;
1010
using Microsoft.Extensions.DependencyInjection;
11+
using TestBuildingBlocks;
1112
using Xunit;
1213

1314
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Creating

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Creating/CreateResourceWithClientGeneratedIdTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using JsonApiDotNetCore.Serialization.Objects;
88
using Microsoft.EntityFrameworkCore;
99
using Microsoft.Extensions.DependencyInjection;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Creating

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Creating/CreateResourceWithToManyRelationshipTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using FluentAssertions;
55
using JsonApiDotNetCore.Serialization.Objects;
66
using Microsoft.EntityFrameworkCore;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Creating

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Creating/CreateResourceWithToOneRelationshipTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using Microsoft.EntityFrameworkCore;
88
using Microsoft.Extensions.DependencyInjection;
99
using Newtonsoft.Json;
10+
using TestBuildingBlocks;
1011
using Xunit;
1112

1213
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Creating

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Deleting/DeleteResourceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using FluentAssertions;
55
using JsonApiDotNetCore.Serialization.Objects;
66
using Microsoft.EntityFrameworkCore;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Deleting

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Fetching/FetchRelationshipTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.Threading.Tasks;
55
using FluentAssertions;
66
using JsonApiDotNetCore.Serialization.Objects;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Fetching

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Fetching/FetchResourceTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.Threading.Tasks;
55
using FluentAssertions;
66
using JsonApiDotNetCore.Serialization.Objects;
7+
using TestBuildingBlocks;
78
using Xunit;
89

910
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Fetching

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/ReadWriteFakers.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Bogus;
3+
using TestBuildingBlocks;
34

45
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite
56
{

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Updating/Relationships/AddToToManyRelationshipTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using FluentAssertions;
66
using JsonApiDotNetCore.Serialization.Objects;
77
using Microsoft.EntityFrameworkCore;
8+
using TestBuildingBlocks;
89
using Xunit;
910

1011
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Updating.Relationships

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ReadWrite/Updating/Relationships/RemoveFromToManyRelationshipTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using FluentAssertions;
66
using JsonApiDotNetCore.Serialization.Objects;
77
using Microsoft.EntityFrameworkCore;
8+
using TestBuildingBlocks;
89
using Xunit;
910

1011
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.ReadWrite.Updating.Relationships

0 commit comments

Comments
 (0)