• File: SignatureFactoryTest.php
  • Full Path: /home/masbinta/public_html/core/vendor/league/glide/tests/Signatures/SignatureFactoryTest.php
  • File size: 276 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace League\Glide\Signatures;

use PHPUnit\Framework\TestCase;

class SignatureFactoryTest extends TestCase
{
    public function testCreate()
    {
        $this->assertInstanceOf('League\Glide\Signatures\Signature', SignatureFactory::create('example'));
    }
}