nSetup:
nUse the @Before annotation on a method containing code to run before each test case.
nTeardown (regardless of the verdict):
nUse the @After annotation on a method containing code to run after each test case.
nThese methods will run even if exceptions are thrown in the test case or an assertion fails.
nIt
is allowed to have any number of these annotations.
nAll methods annotated with @Before will be run before each test case, but they may be run in any order.