16 lines
258 B
PHP
16 lines
258 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Http\Controllers\ThirdPartyServices;
|
||
|
|
||
|
use App\Http\Controllers\ThirdPartyServices\EmailService;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class EmailServiceTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function testSend_export_via_email()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|