* replacing it with the last fragment of the trigger command, i.e. the
* first "unnamed" argument.
*/
@Test
public void testReplaceVarsForUnnamedArgument() {
final CommandTransformation rooCommand = new CommandTransformation(
"cd test-data");
final String result = TailorHelper.replaceVars(rooCommand,
"module focus --moduleName ${*}");
Assert.assertTrue("* was not replaced: " + result,
result.endsWith("test-data"));