| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | /** |
||
| 13 | * @return AbstractPlatform |
||
| 14 | */ |
||
| 15 | public function getPlatform() { |
||
| 16 | return $this->getMockForAbstractClass(AbstractPlatform::class); |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return SetType |
||
| 21 | */ |
||
| 22 | public function getType() { |
||
| 23 | |||
| 24 | $typeBuilder = $this->getMockBuilder(SetType::class); |
||
| 25 | $typeBuilder = $typeBuilder->disableOriginalConstructor(); |
||
| 26 | $typeBuilder = $typeBuilder->setMethods(array('getValue', 'getName')); |
||
| 27 | |||
| 28 | /** @var SetType $type */ |
||
| 48 |