16 lines
223 B
PHP
16 lines
223 B
PHP
<?php
|
|
namespace Framadate\Services;
|
|
|
|
use Framadate\FramaTestCase;
|
|
|
|
class MailServiceUnitTest extends FramaTestCase {
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
function cconstruct() {
|
|
$this->assertEquals('a', 'a');
|
|
}
|
|
|
|
}
|