Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created June 19, 2022 05:05
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 dsibinski/03221c21614c48cef6fdbbd5e11accb4 to your computer and use it in GitHub Desktop.
Save dsibinski/03221c21614c48cef6fdbbd5e11accb4 to your computer and use it in GitHub Desktop.
[TestFixture]
public class MyTests
{
[Test]
public void SampleTest()
{
// some operations here, like starting a server for tests in-memory...
TestContext.Progress.WriteLine("The server is running now! You can reach it on https://localhost:8067/");
while (true)
{
// keep it running on purpose (e.g. for E2E tests)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment