This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Given | |
{ | |
private readonly XyzApiWebApplicationFactory context; // replace this type with your specific WebApplicationFactory etc | |
public Given(XyzApiWebApplicationFactory context) | |
{ | |
this.context = context; | |
} | |
public static Given UsingThe(XyzApiWebApplicationFactory context) => new(context); |