mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-01-23 02:14:06 +00:00
15 lines
223 B
PHP
15 lines
223 B
PHP
<?php
|
|
namespace Framadate\Services;
|
|
|
|
use Framadate\FramaTestCase;
|
|
|
|
class MailServiceUnitTest extends FramaTestCase {
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
function cconstruct() {
|
|
$this->assertEquals('a', 'a');
|
|
}
|
|
|
|
}
|