Qiita →【Java】JUnitのテストを継承を使って共通化する - Qiita
テストケースの継承、やってみたらできたので……これで、

  • 前提条件を変えても同じテスト郡をパスする
  • 実装は結構異なるけども同じテストをパスする
とかそういうのをコピペせずに書けます。
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import static org.assertj.core.api.Assertions.*;

import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.runners.Enclosed;
import org.junit.runner.RunWith;

@RunWith(Enclosed.class)
public class TestSample {

	@Ignore
	public static class Template {
		@BeforeClass
		public static void _beforeClass() {
			// 共通の前処理
		}

		@AfterClass
		public static void _afterClass() {
			// 共通の後処理
		}

		@Before
		public void _setup() {
			// 共通の前処理
		}

		@After
		public void tearDown() {
			// 共通の後処理
		}

		@Test
		public void test1() {
			assertThat(1).isEqualTo(1);
		}

		@Test
		public void test2() {
			assertThat(1).isEqualTo(1);
		}
	}

	public static class TestA extends Template {
		@Before
		public void setup() {
			// 固有の前処理
		}
	}

	public static class TestB extends Template {
		@Before
		public void setup() {
			// 固有の前処理
		}
		
		@Test
		public void test3() {
			// 特別なテストケース
		}
	}
}