@Before
@After
@BeforeEach
@AfterEach
示例:
@Before private int foo(int arg) { ... }
在应用快速修复后:
@Before public void foo() { ... }