Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace Doctrine\DBAL\Tests\Types; use Doctrine\DBAL\P..
Decoded Output download
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\StringType;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class StringTest extends TestCase
{
private AbstractPlatform&MockObject $platform;
private StringType $type;
protected function setUp(): void
{
$this->platform = $this->createMock(AbstractPlatform::class);
$this->type = new StringType();
}
public function testReturnsSQLDeclaration(): void
{
$this->platform->expects(self::once())
->method('getStringTypeDeclarationSQL')
->willReturn('TEST_STRING');
self::assertEquals('TEST_STRING', $this->type->getSQLDeclaration([], $this->platform));
}
public function testConvertToPHPValue(): void
{
self::assertIsString($this->type->convertToPHPValue('foo', $this->platform));
self::assertIsString($this->type->convertToPHPValue('', $this->platform));
}
public function testNullConversion(): void
{
self::assertNull($this->type->convertToPHPValue(null, $this->platform));
}
public function testSQLConversion(): void
{
self::assertEquals('t.foo', $this->type->convertToDatabaseValueSQL('t.foo', $this->platform));
self::assertEquals('t.foo', $this->type->convertToPHPValueSQL('t.foo', $this->platform));
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Types;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\StringType;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class StringTest extends TestCase
{
private AbstractPlatform&MockObject $platform;
private StringType $type;
protected function setUp(): void
{
$this->platform = $this->createMock(AbstractPlatform::class);
$this->type = new StringType();
}
public function testReturnsSQLDeclaration(): void
{
$this->platform->expects(self::once())
->method('getStringTypeDeclarationSQL')
->willReturn('TEST_STRING');
self::assertEquals('TEST_STRING', $this->type->getSQLDeclaration([], $this->platform));
}
public function testConvertToPHPValue(): void
{
self::assertIsString($this->type->convertToPHPValue('foo', $this->platform));
self::assertIsString($this->type->convertToPHPValue('', $this->platform));
}
public function testNullConversion(): void
{
self::assertNull($this->type->convertToPHPValue(null, $this->platform));
}
public function testSQLConversion(): void
{
self::assertEquals('t.foo', $this->type->convertToDatabaseValueSQL('t.foo', $this->platform));
self::assertEquals('t.foo', $this->type->convertToPHPValueSQL('t.foo', $this->platform));
}
}
Function Calls
None |
Stats
MD5 | a565eae7979c314e8e4091be499acaf0 |
Eval Count | 0 |
Decode Time | 107 ms |