Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 4 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
26 | 7 | private function getFileSubPath() |
|
27 | { |
||
28 | 7 | $className = new ClassName($this->getTest()->getReflectedTestMethod()->getDeclaringClass()->getName()); |
|
29 | 7 | return sprintf( |
|
30 | 7 | '/fixtures/mocks/%s/%s', |
|
31 | 7 | $className->getBaseName(), |
|
32 | 7 | $this->getTest()->getReflectedTestMethod()->getName() |
|
33 | 7 | ); |
|
34 | } |
||
35 | } |
||
36 |