assertEquals(true, step.getUsePadding());
}
@Test
public void testCreateNewTestStepWsdlTestCaseString() {
WsdlTestSuite mockTestSuite = Mockito.mock(WsdlTestSuite.class);
WsdlTestCase testCase = new WsdlTestCase(mockTestSuite, TestCaseConfig.Factory.newInstance(), false);
TestStepConfig newConfig = factory.createNewTestStep(testCase, "Math Evaluator");
ExpressionEvaluationTestStep step = new ExpressionEvaluationTestStep(testCase, newConfig, false);
assertEquals("Math Evaluator", step.getName());