mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
16 lines
383 B
PHP
16 lines
383 B
PHP
<?PHP
|
|
namespace Mailgun\Tests\Message;
|
|
|
|
use Mailgun\Common\Message;
|
|
|
|
class MessageTest extends \Mailgun\Tests\MailgunTestCase{
|
|
public function setUp(){
|
|
//Do we need to setup anything? Not sure yet. Leaving this function here until I need it!
|
|
}
|
|
public function testBlankInstantiation(){
|
|
$message = new Message();
|
|
$this->assertTrue(is_array($message->getMessage()));
|
|
}
|
|
}
|
|
|
|
?>
|