Skip to content

Commit a12ff93

Browse files
committed
refactor(tests): rename integration tests to acceptance
1 parent f163fb4 commit a12ff93

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

test/JsonApiDotNetCoreExampleTests/IntegrationTests/Spec/ContentNegotiation.cs renamed to test/JsonApiDotNetCoreExampleTests/Acceptance/Spec/ContentNegotiation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using Microsoft.AspNetCore.TestHost;
1111
using Xunit;
1212

13-
namespace JsonApiDotNetCoreExampleTests.IntegrationTests.Spec
13+
namespace JsonApiDotNetCoreExampleTests.Acceptance.Spec
1414
{
1515
[Collection("WebHostCollection")]
1616
public class ContentNegotiation

test/JsonApiDotNetCoreExampleTests/IntegrationTests/TodoItemsControllerTests.cs renamed to test/JsonApiDotNetCoreExampleTests/Acceptance/TodoItemsControllerTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
using Xunit;
1616
using JsonApiDotNetCore.Services;
1717
using JsonApiDotNetCore.Serialization;
18-
using System;
1918

20-
namespace JsonApiDotNetCoreExampleTests.IntegrationTests
19+
namespace JsonApiDotNetCoreExampleTests.Acceptance
2120
{
2221
[Collection("WebHostCollection")]
2322
public class TodoItemControllerTests
@@ -64,7 +63,6 @@ public async Task Can_Get_TodoItems()
6463
Assert.True(deserializedBody.Count <= expectedEntitiesPerPage);
6564
}
6665

67-
6866
[Fact]
6967
public async Task Can_Paginate_TodoItems()
7068
{

0 commit comments

Comments
 (0)