tp6混合easyswoole DLL 多应用模式 修改版
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php /** * @CreateTime: 2019/9/14 下午10:24 * @Author: huizhang <tuzisir@163.com> * @Copyright: copyright(2019) Easyswoole all rights reserved * @Description: SplFileStream 单元测试 */ namespace EasySwoole\Spl\Test;
use EasySwoole\Spl\SplFileStream; use PHPUnit\Framework\TestCase;
class FileStreamTest extends TestCase {
public function testConstruct() { $fileStream = new SplFileStream('./test.txt'); $this->assertEquals('STDIO', $fileStream->getMetadata('stream_type')); }
public function testLock() { $fileStream = new SplFileStream('./test.txt'); $this->assertTrue($fileStream->lock()); }
public function testUnlock() { $fileStream = new SplFileStream('./test.txt'); $this->assertTrue($fileStream->unlock()); } }
|