Feature: String Manipulation
Scenario: Append two strings
Given a string "Hello"
And another string "World"
When I append the two strings
Then the result should be "HelloWorld"
properties
env.classpath=lib/StringUtils.jar
testcase.1.classname=StringManipulationTest
testcase.1.methodname=testAppendStrings
testcase.1.inputs=Hello, World
testcase.1.expectedoutput=HelloWorld