| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 29 | public function testScalarTypeObjectCreation() |
||
| 30 | { |
||
| 31 | foreach($this->getScalarTypes() as $type) { |
||
| 32 | $object = TypeMap::getScalarTypeObject($type); |
||
| 33 | $this->assertEquals($object->getKind(), TypeMap::KIND_SCALAR); |
||
| 34 | $this->assertEquals($object->getName(), ucfirst($type)); |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 52 |