1 <?php
2
3 namespace Alo\Test;
4
5 if(!defined('GEN_START')) {
6 http_response_code(404);
7 die();
8 }
9
10 /**
11 * Tests functions for output or return values
12 *
13 * @author Art <a.molcanovas@gmail.com>
14 * @package TestingSuite
15 * @deprecated Since v1.1
16 */
17 class FunctionTester extends AbstractTester {
18
19 /**
20 * Returns the callable parameter for call_user_func_array()
21 *
22 * @author Art <a.molcanovas@gmail.com>
23 *
24 * @param string $name Method name
25 *
26 * @return string
27 */
28 protected function getCallable($name) {
29 return $name;
30 }
31 }