Esempio n. 1
0
 public function testWrongPath()
 {
     $this->setExpectedException('PHPUnit_Framework_Error', 'The file cache directory *i_dont_think_this_dir_would_exist* was not found or is not writable!');
     Ntentan::$debug = false;
     // prevent the error message from showing
     Cache::setCachePath('i_dont_think_this_dir_would_exist');
     Cache::add('test', 'should fail');
     Ntentan::$debug = true;
 }