Skip to content

Instantly share code, notes, and snippets.

@judepereira
Last active March 2, 2022 11:19
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 judepereira/14f6c0b4e9761fcf900b936c266044d1 to your computer and use it in GitHub Desktop.
Save judepereira/14f6c0b4e9761fcf900b936c266044d1 to your computer and use it in GitHub Desktop.
class State {
public static boolean someState;
}
class GoodTest {
@Test
public void checkState() {
assertFalse(State.someState);
}
}
class RogueTest {
@Test
public void playWithState() {
State.someState = true;
// Test something that relies on State#someState
// Whoops! We forgot to reset State#someState to its original value!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment