PHPExiftool\Test\AbstractWriterTest::testSetMode PHP Метод

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

public testSetMode ( )
    public function testSetMode()
    {
        $this->object->setMode(Writer::MODE_EXIF2IPTC, true);
        $this->assertTrue($this->object->isMode(Writer::MODE_EXIF2IPTC));
        $this->object->setMode(Writer::MODE_XMP2EXIF, true);
        $this->assertTrue($this->object->isMode(Writer::MODE_XMP2EXIF));
        $this->object->setMode(Writer::MODE_EXIF2IPTC, false);
        $this->assertFalse($this->object->isMode(Writer::MODE_EXIF2IPTC));
        $this->object->setMode(Writer::MODE_XMP2EXIF, true);
        $this->assertTrue($this->object->isMode(Writer::MODE_XMP2EXIF));
    }