for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace leocata\M1\Methods\Response;
use PHPUnit\Framework\TestCase;
class StateTest extends TestCase
{
/**
* @expectedException \leocata\M1\Exceptions\MissingMandatoryField
* @expectedExceptionMessage userid
*/
public function testMissingMandatoryExportField()
$setState = new State();
$setState->export();
}