@@ -147,7 +147,7 @@ |
||
147 | 147 | if($skipped->reason) { |
148 | 148 | $reason = ": {$skipped->reason}"; |
149 | 149 | } |
150 | - echo "Skipped $skipped->name$reason\n"; |
|
150 | + echo "skipped $skipped->name$reason\n"; |
|
151 | 151 | } |
152 | 152 | } |
153 | 153 |
@@ -147,7 +147,7 @@ |
||
147 | 147 | if($skipped->reason) { |
148 | 148 | $reason = ": {$skipped->reason}"; |
149 | 149 | } |
150 | - echo "Skipped $skipped->name$reason\n"; |
|
150 | + echo "skipped $skipped->name$reason\n"; |
|
151 | 151 | } |
152 | 152 | } |
153 | 153 |
@@ -19,7 +19,7 @@ |
||
19 | 19 | if($success) { |
20 | 20 | return; |
21 | 21 | } |
22 | - echo "Test $this->taskCount failed. $text\n"; |
|
22 | + echo "test $this->taskCount failed. $text\n"; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -38,15 +38,15 @@ |
||
38 | 38 | try { |
39 | 39 | $reflection = new ReflectionMethod($class, $dataProvider); |
40 | 40 | if(!$reflection->isPublic()) { |
41 | - throw new InvalidDataProviderException("Method $className::$dataProvider is not public."); |
|
41 | + throw new InvalidDataProviderException("method $className::$dataProvider is not public."); |
|
42 | 42 | } |
43 | 43 | $result = call_user_func([$class, $dataProvider]); |
44 | 44 | if(!is_array($result)) { |
45 | - throw new InvalidDataProviderException("Method $className::$dataProvider has to return an array."); |
|
45 | + throw new InvalidDataProviderException("method $className::$dataProvider has to return an array."); |
|
46 | 46 | } |
47 | 47 | return $result; |
48 | 48 | } catch(\ReflectionException $e) { |
49 | - throw new InvalidDataProviderException("Method $className::$dataProvider does not exist.", 0, $e); |
|
49 | + throw new InvalidDataProviderException("method $className::$dataProvider does not exist.", 0, $e); |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 | /** @var mixed $value */ |