Google\Cloud\Tests\Datastore\EntityMapperTest::testConvertValueTimestamp PHP Method

testConvertValueTimestamp() public method

    public function testConvertValueTimestamp()
    {
        $type = 'timestampValue';
        $val = (new \DateTime())->format(self::DATE_FORMAT);
        $res = $this->mapper->convertValue($type, $val);
        $this->assertEquals($val, $res->format(self::DATE_FORMAT));
    }