Created
June 19, 2022 04:54
-
-
Save dsibinski/419247cf91eaa4bd67f820a9af5e0dd9 to your computer and use it in GitHub Desktop.
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
[TestFixture] | |
public class MyTests | |
{ | |
[Test] | |
public void SampleTest() | |
{ | |
// some operations here, like starting a server for tests in-memory... | |
// TODO: inform the 'user' (the one who runs the test) that the server is already running | |
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