Where to put rarely used JUnit code snippets?!

Template are a great way to add small useful code snippets at your fingertips. This is especially nice for rarely used code which is sometimes hard to remember.

Let's start with a first useful, non frequently used snippet: A JUnit @Rule to create a temporary folder.

@Rule
public TemporaryFolder folder = new TemporaryFolder();

To be continued...