代码单元测试
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK)
public class FlowableTest {
@Before
public void testBefore() {
}
@After
public void testAfter() {
}
@Test
public void test() {
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
上次更新: 2025/04/03, 11:07:08