コード例 #1
0
 /**
  * testIsSlashTerm method
  *
  * @return void
  */
 public function testIsSlashTerm()
 {
     $this->assertFalse(Folder::isSlashTerm('cake'));
     $this->assertTrue(Folder::isSlashTerm('C:\\cake\\'));
     $this->assertTrue(Folder::isSlashTerm('/usr/local/'));
 }