1 | <?php |
||
13 | class MethodNameGeneratorTest extends \Nimut\TestingFramework\TestCase\UnitTestCase |
||
14 | { |
||
15 | /** |
||
16 | * @var MethodNameGenerator $subject |
||
17 | */ |
||
18 | protected $subject; |
||
19 | |||
20 | public function setUp() |
||
25 | |||
26 | /** |
||
27 | * @method generate |
||
28 | * @test |
||
29 | */ |
||
30 | public function generateWithBodytextGeneratesGetTextAsMethodName() |
||
34 | |||
35 | /** |
||
36 | * @method generate |
||
37 | * @test |
||
38 | */ |
||
39 | public function generateWithDescriptionGeneratesGetTextAsMethodName() |
||
43 | |||
44 | /** |
||
45 | * @method generate |
||
46 | * @test |
||
47 | */ |
||
48 | public function generateWithTstampGeneratesGetUnixtimeAsMethodName() |
||
52 | } |
||
53 |