Possible Duplicate:
JUnit 4: Set up things in a test suite before tests are run (like a test's @BeforeClass method, just for a test suite)
I am looking for an entry point to be invoked just once before all the tests, not just in a class, but in all of the suites and classes within the same jar.
MbUnit (in .NET) provides the AssemblySetUp
attribute, which designates such an entry point.
How can I do it in java using junit 4?