Created
March 31, 2020 11:20
-
-
Save wangxi761/b9dcca18c4d2709e4e35e8ae4672d84e to your computer and use it in GitHub Desktop.
demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.demo.gaia; | |
| import com.jayway.jsonpath.JsonPath; | |
| import javax.annotation.Resource; | |
| public class LoginFlow extends AbstractFlow { | |
| @Resource(name = "other") | |
| AbstractFlow other_flow; | |
| @Override | |
| public void before() { | |
| } | |
| @Override | |
| public void test() { | |
| vars.put("password", 1123); | |
| var o = vars.get("flow1.password"); | |
| String a= JsonPath.parse("").toString(); | |
| other_flow.run(); | |
| } | |
| @Override | |
| public void after() { | |
| } | |
| @Override | |
| public void doException(Exception e) { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment