clivern-imap/tests/MailBoxTest.php

22 lines
292 B
PHP
Raw Permalink Normal View History

2017-08-08 13:03:22 +02:00
<?php
/*
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
2017-08-08 13:03:22 +02:00
*/
namespace Tests;
use PHPUnit\Framework\TestCase;
/**
* MailBox Class Test.
2017-08-08 13:03:22 +02:00
*/
class MailBoxTest extends TestCase
{
public function testGet()
{
$this->assertTrue(true);
}
}