Skip to content

Commit 482d780

Browse files
authored
Merge pull request #5 from jbogard/TestsFix
Fixing the tests
2 parents e6992ec + e6dfbf9 commit 482d780

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ContosoUniversity.IntegrationTests/Features/Students/CreateTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace ContosoUniversity.IntegrationTests.Features.Students
1010
{
11-
public class CreateTests
11+
public class CreateTests : IntegrationTestBase
1212
{
1313
[Fact]
1414
public async Task Should_create_student()

ContosoUniversity.IntegrationTests/Features/Students/DeleteTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace ContosoUniversity.IntegrationTests.Features.Students
1010
{
11-
public class DeleteTests
11+
public class DeleteTests : IntegrationTestBase
1212
{
1313
[Fact]
1414
public async Task Should_get_delete_details()

ContosoUniversity.IntegrationTests/Features/Students/DetailsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace ContosoUniversity.IntegrationTests.Features.Students
1111
{
12-
public class DetailsTests
12+
public class DetailsTests : IntegrationTestBase
1313
{
1414
[Fact]
1515
public async Task Should_get_details()

ContosoUniversity.IntegrationTests/Features/Students/EditTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace ContosoUniversity.IntegrationTests.Features.Students
1010
{
11-
public class EditTests
11+
public class EditTests : IntegrationTestBase
1212
{
1313
[Fact]
1414
public async Task Should_get_edit_details()

ContosoUniversity.IntegrationTests/Features/Students/IndexTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace ContosoUniversity.IntegrationTests.Features.Students
1111
{
12-
public class IndexTests
12+
public class IndexTests : IntegrationTestBase
1313
{
1414
[Fact]
1515
public async Task Should_return_all_items_for_default_search()

0 commit comments

Comments
 (0)