@@ 29-38 (lines=10) @@ | ||
26 | /** |
|
27 | * @return string |
|
28 | */ |
|
29 | public function getFilename(): string |
|
30 | { |
|
31 | return $this->yaml['tests']['path'] . |
|
32 | DIRECTORY_SEPARATOR . |
|
33 | static::NAMESPACE . |
|
34 | DIRECTORY_SEPARATOR . |
|
35 | str_replace('\\', DIRECTORY_SEPARATOR, $this->yaml['class']) . |
|
36 | 'Test.php' |
|
37 | ; |
|
38 | } |
|
39 | ||
40 | /** |
|
41 | * @return Node |
@@ 26-35 (lines=10) @@ | ||
23 | /** |
|
24 | * @return string |
|
25 | */ |
|
26 | public function getFilename(): string |
|
27 | { |
|
28 | return $this->yaml['src']['path'] . |
|
29 | DIRECTORY_SEPARATOR . |
|
30 | static::NAMESPACE . |
|
31 | DIRECTORY_SEPARATOR . |
|
32 | str_replace('\\', DIRECTORY_SEPARATOR, $this->yaml['class']) . |
|
33 | '.php' |
|
34 | ; |
|
35 | } |
|
36 | } |
|
37 |