1private MCP mcp = null; 2
3
public CarDemoTest(String testName) ...{ 4
super(testName); 5
} 6
7
public void setUp() ...{ 8
super.setUp(); 9
10
mcp = new MCP(); 11
try ...{ 12
mcp.setAppData(getBrowserBinDir()); 13
} 14
catch (Exception e) ...{ 15
fail(); 16
} 17
18
}
| 第1页: setUp 方法 | 第2页: testCardDemo方法 |
| 第3页: 分析代码 |