| 1 common.test | public CommonFormatDateTestCase::testFormatIntervalZeroSecond() |
Tests the formatInterval method for 0 second.
File
- core/
modules/ simpletest/ tests/ common.test, line 3048 - Tests for common.inc functionality.
Class
- CommonFormatDateTestCase
- Tests the format_date() function.
Code
public function testFormatIntervalZeroSecond() {
$result = format_interval(0, 1, self::LANGCODE);
$this->assertEqual('0 sec', $result);
}