Unrelated: remove unused before/after

Former-commit-id: 68524208b8c0a197e9682aceec25cff0bc30ff56
This commit is contained in:
Hans Joachim Desserud
2014-10-12 18:29:27 +02:00
parent 6481938626
commit 8f9cbfe806

View File

@@ -21,11 +21,7 @@ import java.io.File;
import java.io.IOException;
import java.security.NoSuchAlgorithmException;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
@@ -38,22 +34,6 @@ import org.owasp.dependencycheck.utils.Checksum;
*/
public class ChecksumTest {
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Rule
public ExpectedException expectedException = ExpectedException.none();