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