Пример #1
0
Файл: Test.php Проект: jasny/Q
 /**
  * Tests Fs::file()
  */
 public function testFile()
 {
     $file = Fs::file(__FILE__);
     $this->assertType('Q\\Fs_File', $file);
     $this->assertEquals(__FILE__, (string) $file);
 }