PopTest\Font\FontTest::testType1Pfb PHP Метод

testType1Pfb() публичный Метод

public testType1Pfb ( )
    public function testType1Pfb()
    {
        $f = new Type1(__DIR__ . '/../tmp/cez.pfb');
        $this->assertEquals(1000, $f->unitsPerEm);
        $this->assertEquals(800, $f->ascent);
        $this->assertEquals(200, $f->descent);
        $this->assertEquals(-658, $f->bBox->xMin);
        $this->assertEquals(-683, $f->bBox->yMin);
        $this->assertEquals(1672, $f->bBox->xMax);
        $this->assertEquals(1127, $f->bBox->yMax);
        $this->assertEquals('Cezanne', $f->info->fullName);
    }