Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/framework/Test/Unit/DomDocument/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Test/Unit/DomDocument/DomDocumentFactoryTest.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\Test\Unit\DomDocument;

use Magento\Framework\DomDocument\DomDocumentFactory;
use PHPUnit\Framework\TestCase;

class DomDocumentFactoryTest extends TestCase
{
    public function testCreateReturnsDomDocument()
    {
        $domDocumentFactory = new DomDocumentFactory();
        $this->assertInstanceOf(
            \DOMDocument::class,
            $domDocumentFactory->create()
        );
    }
}