Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
108 | 51 | public static function suiteFromNode(\SimpleXMLElement $node) |
|
109 | { |
||
110 | 51 | return new TestSuite( |
|
111 | 51 | (string) $node['name'], |
|
112 | 51 | (string) $node['tests'], |
|
113 | 51 | (string) $node['assertions'], |
|
114 | 51 | (string) $node['failures'], |
|
115 | 51 | (string) $node['errors'], |
|
116 | 51 | (string) $node['time'], |
|
117 | 51 | (string) $node['file'] |
|
118 | 51 | ); |
|
119 | } |
||
120 | } |
||
121 |