for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Knp\Snappy;
use PHPUnit\Framework\TestCase;
class ImageTest extends TestCase
{
public function testCreateInstance()
$testObject = new \Knp\Snappy\Image();
$this->assertInstanceOf('\Knp\Snappy\Image', $testObject);
}