clivern-imap/tests/MailBoxTest.php
2017-08-08 17:45:18 +02:00

21 lines
254 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()
{
$this->assertTrue(true);
}
}