Skip to content

Commit 56d8f3c

Browse files
committed
MQE-1964: MFTF Helper - Implementation
- add travis build for functional test execution
1 parent 345ec25 commit 56d8f3c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

dev/tests/functional/tests/MFTF/DevDocs/Helper/CustomHelper.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ public function goTo(
2929
$bla = 'blaValue',
3030
array $arraysomething = []
3131
) {
32-
print("this is it: " . $url . PHP_EOL);
33-
sleep(4);
32+
print('Hello, this is custom helper which gives an ability to write custom solutions without usage of <executeInSelenium /> and <performOn /> actions.');
33+
print('string $url = ' . $url . PHP_EOL);
34+
print('$test = ' . $test . PHP_EOL);
35+
print('array $module = [' . implode(', ', $module) . ']' . PHP_EOL);
36+
print('$superBla = ' . $superBla . PHP_EOL);
37+
print('$bla = ' . $url . PHP_EOL);
38+
print('array $arraysomething = [' . implode(', ', $arraysomething) . ']' . PHP_EOL);
3439
}
3540
}

0 commit comments

Comments
 (0)