Google\Cloud\Tests\Datastore\EntityMapperTest::testConvertValueInteger PHP Méthode

testConvertValueInteger() public méthode

    public function testConvertValueInteger()
    {
        $type = 'integerValue';
        $val = 1;
        $res = $this->mapper->convertValue($type, $val);
        $this->assertEquals(1, $res);
    }