use of com.seleniumtests.reporter.logger.TestAction in project seleniumRobot by bhecquet.
the class TestTestStep method testTestActionEncodeXmlPasswordKept.
@Test(groups = { "ut" })
public void testTestActionEncodeXmlPasswordKept() {
TestAction action = new TestAction("action2 \"'<>&", false, Arrays.asList("myPassword"));
TestAction encodedAction = action.encode("xml");
Assert.assertTrue(encodedAction.getPwdToReplace().contains("myPassword"));
}
Aggregations