mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-10 15:46:21 +08:00
14 lines
249 B
PHP
Executable File
14 lines
249 B
PHP
Executable File
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use service\Utility\Helper;
|
|
|
|
class GetDelimiterTest extends TestCase
|
|
{
|
|
|
|
public function test_main()
|
|
{
|
|
$output = Helper::getDelimiter();
|
|
$this->assertEquals("", $output);
|
|
}
|
|
} |