Skip to content

Instantly share code, notes, and snippets.

@TsuyoshiUshio
Created March 20, 2020 04:14
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 TsuyoshiUshio/fbb874719b667cce02dee105178b9711 to your computer and use it in GitHub Desktop.
Save TsuyoshiUshio/fbb874719b667cce02dee105178b9711 to your computer and use it in GitHub Desktop.
Serial Testing
[Collection("Serial")]
public class SerialTest01
{
[Fact]
public async Task Test7()
{
await Task.Delay(TimeSpan.FromSeconds(5));
Assert.True(true);
}
}
[Collection("Serial")]
public class SerialTest02
{
[Fact]
public async Task Test8()
{
await Task.Delay(TimeSpan.FromSeconds(5));
Assert.True(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment