测试用例-顺序执行全部

@Slf4j
public class OperateApiTest {
    @Before
    public void init() {
    }
}
    @Test
    public void invokeUnFreezeProcess() {
        BIZ_NO = "";
        identityId = "";
        Long times = System.currentTimeMillis();
        BIZ_NO = "BZ" + times + "invokeUnFreezeProcess";
        identityId = "IT" + times + "invokeUnFreezeProcess";
        test_add_order();
        test_calculateAvailableByOrder();
        test_freezeForUse();
        test_unfreeze();
    }

    @Test
    public void invokeDeductFreezeProcess() {
        BIZ_NO = "";
        identityId = "";
        Long times = System.currentTimeMillis();
        BIZ_NO = "BZ" + times + "invokeDeductFreezeProcess";
        identityId = "IT" + times + "invokeDeductFreezeProcess";
        test_add_order();
        test_calculateAvailableByOrder();
        test_freezeForUse();
        test_deductFreeze();
    }

 

posted @ 2023-07-22 16:49  使用D  阅读(5)  评论(0编辑  收藏  举报