我有以下试剂。
...
<parameter name="Empl_Name" value="Stephen" />
<test name="Employee Search test" junit="false">
<parameter name="Valid_Empl_Name" value="${Empl_Name}" />
<classes>
<class name="org.EmployeeClass" />
</classes>
</test>
The above is not working. My requirement is that I want to refer the Parameter Valid_Empl_Name
with the above mentioned Empl_Name
.
I want to reuse the Empl_Name
parameter value in many of the test cases.
是否有办法这样做?