public function testGetDate4()
 {
     $date = new Zend_Date_DateObject(0);
     $test = array('seconds' => 0, 'minutes' => 40, 'hours' => 2, 'mday' => 26, 'wday' => 3, 'mon' => 8, 'year' => 2188, 'yday' => 238, 'weekday' => 'Wednesday', 'month' => 'July', 0 => 6900000000);
     $result = $date->getDate(6900000000, true);
     $this->assertSame((int) $result['seconds'], (int) $test['seconds']);
     $this->assertSame((int) $result['minutes'], (int) $test['minutes']);
     $this->assertSame((int) $result['hours'], (int) $test['hours']);
     $this->assertSame((int) $result['mday'], (int) $test['mday']);
     $this->assertSame((int) $result['mon'], (int) $test['mon']);
     $this->assertSame((int) $result['year'], (int) $test['year']);
     $this->assertSame((int) $result['yday'], (int) $test['yday']);
 }