clivern-imap/tests/MailBoxTest.php

21 lines
269 B
PHP
Raw Normal View History

2017-08-08 13:03:22 +02:00
<?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);
}
2017-08-08 13:03:22 +02:00
}