| [ Index ] |
PHP Cross Reference of Limb3 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 * Limb PHP Framework 4 * 5 * @link http://limb-project.com 6 * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com) 7 * @license LGPL http://www.gnu.org/copyleft/lesser.html 8 */ 9 lmb_require('limb/datetime/src/lmbTimePeriod.class.php'); 10 lmb_require('limb/datetime/src/lmbDatePeriod.class.php'); 11 12 class lmbTimePeriodTest extends UnitTestCase 13 { 14 function testUseOnlyTime() 15 { 16 $p = new lmbTimePeriod('2005-12-01 13:45:12', '2006-12-01 13:46:00'); 17 $this->assertEqual($p->getDuration(), 48); 18 } 19 20 function testGetDatePeriod() 21 { 22 $p = new lmbTimePeriod('13:45:12', '13:46:00'); 23 $date_period = $p->getDatePeriod('2006-12-01'); 24 $this->assertEqual($date_period, new lmbDatePeriod('2006-12-01 13:45:12', '2006-12-01 13:46:00')); 25 } 26 } 27 28 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri Dec 5 04:05:07 2008 | Cross-referenced by PHPXref 0.7 |