for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GuillermoandraeTest\DynamoDb\Factory;
use Guillermoandrae\DynamoDb\Exception\Exception;
use Guillermoandrae\DynamoDb\Factory\OperationFactory;
use PHPUnit\Framework\TestCase;
final class OperationFactoryTest extends TestCase
{
public function testBadRequest()
$this->expectException(Exception::class);
OperationFactory::factory('test', []);
}