我需要关于如何在所有测试方法中实现以下代码段的建议。
@Test
public void testCatalogItemUpdate() {
String correlationId = getCorrelation();
try {
parallel().actions(
//use correlationId
//invoke test scenario
//assert results
);
} finally {
print(correlationId);
}
}
我读到了@Rule 和@Before 和@After 注释。