1 | <?php |
||
14 | class MethodNameGeneratorTest extends UnitTestCase |
||
|
|||
15 | { |
||
16 | /** |
||
17 | * @var Generator $subject |
||
18 | */ |
||
19 | protected $subject; |
||
20 | |||
21 | public function setUp() |
||
26 | |||
27 | /** |
||
28 | * @method generate |
||
29 | * @test |
||
30 | */ |
||
31 | public function generateReturnsIntegerIfParameterIsInteger() |
||
35 | |||
36 | /** |
||
37 | * @method generate |
||
38 | * @test |
||
39 | */ |
||
40 | public function generateReturnsIntegerIfParameterCanBeConvertedToInteger() |
||
44 | |||
45 | /** |
||
46 | * @method generate |
||
47 | * @test |
||
48 | */ |
||
49 | public function generateReturnsMethodName() |
||
53 | |||
54 | /** |
||
55 | * @method generate |
||
56 | * @test |
||
57 | */ |
||
58 | public function generateReturnsNullWithInvalidParameter() |
||
65 | } |
||
66 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.