Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add test for ISoftDeletable & ITimeable Auto fill properties #3

Merged
merged 3 commits into from
Aug 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
rollback IClassFixture on UserDetailTests
  • Loading branch information
Azaferany committed Aug 4, 2022
commit 0a6f08a3f89fe7cca427a34c6c9e739c1ffaf2df
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

namespace QuickstartTemplate.WebApi.IntegrationTests;

public class UserDetailTests
public class UserDetailTests : IClassFixture<CustomWebApplicationFactory>
{
private readonly CustomWebApplicationFactory _customWebApplicationFactory;

public UserDetailTests()
public UserDetailTests(CustomWebApplicationFactory customWebApplicationFactory)
{
_customWebApplicationFactory = new CustomWebApplicationFactory();
_customWebApplicationFactory = customWebApplicationFactory;
}

[Fact]
Expand Down