コード例 #1
0
ファイル: DirectoryTest.php プロジェクト: number0/php-vfs
 public function testGetMode()
 {
     $dir = new Directory();
     $this->assertEquals(0170000 & 040000, $dir->getMode());
 }
コード例 #2
0
ファイル: DirectoryTest.php プロジェクト: ngangchill/php-vfs
 public function testGetMode()
 {
     $dir = new Directory();
     $this->assertEquals(StatInterface::TYPE_DIR, $dir->getMode() & StatInterface::TYPE_MASK);
 }