Пример #1
0
 /**
  * Test for setUnixTimestampFailed
  */
 public function testsetUnixTimestampFailed()
 {
     try {
         $date = new Zend_Date_DateObjectTestHelper(Zend_Date::now());
         $date->setUnixTimestamp("notimestamp");
         $this->fail("exception expected");
     } catch (Zend_Date_Exception $e) {
         // success
     }
 }
Пример #2
0
 /**
  * Test for setUnixTimestampFailed
  */
 public function testsetUnixTimestampFailed()
 {
     try {
         $date = new Zend_Date_DateObjectTestHelper(Zend_Date::now());
         $date->setUnixTimestamp("notimestamp");
         $this->fail("exception expected");
     } catch (Zend_Date_Exception $e) {
         // success
     } catch (Zend_Locale_Exception $e) {
         $this->markTestSkipped('Autodetection of Locale failed');
     }
 }