Skip to content

Instantly share code, notes, and snippets.

@Adolfi

Adolfi/tests.cs Secret

Created March 28, 2022 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adolfi/cd7530f01336d6f3678e928391a60abd to your computer and use it in GitHub Desktop.
Save Adolfi/cd7530f01336d6f3678e928391a60abd to your computer and use it in GitHub Desktop.
public class Tests
{
private WebApplicationFactory<Program> factory;
[SetUp]
public void Setup()
{
this.factory = new WebApplicationFactory<Program>().WithWebHostBuilder(builder =>
{
// Empty for now..
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment