clivern-imap/tests/MailBoxTest.php
2017-08-08 13:03:22 +02:00

22 lines
307 B
PHP

<?php
/**
* @author clivern <hello@clivern.com>
*/
namespace Tests;
use PHPUnit\Framework\TestCase;
/**
* MailBox Class Test
*
* @package Tests
*/
class MailBoxTest extends TestCase
{
public function testGet()
{
$mb = new \Clivern\Imap\MailBox();
$this->assertEquals($mb->get(), 'test');
}
}