_platform = new \Doctrine\Tests\DBAL\Mocks\MockPlatform(); $this->_type = Type::getType('smallint'); } public function testSmallIntConvertsToPHPValue() { $this->assertInternalType('integer', $this->_type->convertToPHPValue('1', $this->_platform)); $this->assertInternalType('integer', $this->_type->convertToPHPValue('0', $this->_platform)); } public function testSmallIntNullConvertsToPHPValue() { $this->assertNull($this->_type->convertToPHPValue(null, $this->_platform)); } }