212223242526272829
private Person yyang; @Before public void setUp() { chencao = new Person(1L, "chencao", "male"); xishi = new Person(2L, "xishi", "female"); yyang = new Person(3L, "yyang", "male"); }
202122232425262728
private Person yyang; @Before public void setUp() throws Exception { instance = createStatefulRuleTemplate(); chencao = new Person(1L, "chencao", "male"); xishi = new Person(2L, "xishi", "female"); yyang = new Person(3L, "yyang", "male"); }