Exemple #1
0
 public TestBaseWithFixture(DatabaseFixture fixture, ITestOutputHelper output)
 {
     this.fixture = fixture;
     // Use output.WriteLine to print to console
     // This ITestOutputHelper class only knows how to use the Visual Studio Output though, so to tell it to use the console here in VSCode, run the test command like this:
     // dotnet test -l "console;verbosity=detailed"
     outputter = output;
 }
 public LoginTests(DatabaseFixture fixture, ITestOutputHelper output) : base(fixture, output)
 {
 }
Exemple #3
0
 public RegisterTests(DatabaseFixture fixture, ITestOutputHelper output) : base(fixture, output)
 {
 }