for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Palmtree\Csv\Test;
use Palmtree\Csv\Writer;
use PHPUnit\Framework\TestCase;
class WriterTest extends TestCase
{
/** @expectedException \Exception */
public function testInvalidFile()
$writer = new Writer(null);
$writer->createFileHandle();
}