clivern-imap/tests/MailBoxTest.php

21 lines
254 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()
{
2017-08-08 17:45:18 +02:00
$this->assertTrue(true);
2017-08-08 13:03:22 +02:00
}
}