_platform = new \Doctrine\Tests\DBAL\Mocks\MockPlatform(); $this->_type = Type::getType('decimal'); } public function testDecimalConvertsToPHPValue() { $this->assertInternalType('string', $this->_type->convertToPHPValue('5.5', $this->_platform)); } public function testDecimalNullConvertsToPHPValue() { $this->assertNull($this->_type->convertToPHPValue(null, $this->_platform)); } }