DoctrineExtensions\Tests\Types\CarbonDateTest::testTimeSetter PHP Méthode

testTimeSetter() public méthode

public testTimeSetter ( )
    public function testTimeSetter()
    {
        $entity = new Entity();
        $entity->id = 2;
        $entity->time = Carbon::createFromTime(12, 0, 0, 'Europe/London');
        $this->em->persist($entity);
        $this->em->flush();
    }