Commit 187564e6 authored by stefanooldeman's avatar stefanooldeman

use consistent method names for tests formatDate

parent bc8311c9
...@@ -185,7 +185,7 @@ class Solarium_Query_HelperTest extends PHPUnit_Framework_TestCase ...@@ -185,7 +185,7 @@ class Solarium_Query_HelperTest extends PHPUnit_Framework_TestCase
); );
} }
public function testFormatTimestampInput() public function testFormatDateInputTimestamp()
{ {
$this->assertFalse( $this->assertFalse(
$this->_helper->formatDate(strtotime('2011---')), $this->_helper->formatDate(strtotime('2011---')),
...@@ -213,7 +213,7 @@ class Solarium_Query_HelperTest extends PHPUnit_Framework_TestCase ...@@ -213,7 +213,7 @@ class Solarium_Query_HelperTest extends PHPUnit_Framework_TestCase
); );
} }
public function testFormatDateStringInput() public function testFormatDateInputString()
{ {
$this->assertFalse( $this->assertFalse(
$this->_helper->formatDate(date('Y-m-d', strtotime('2011-11-31'))), $this->_helper->formatDate(date('Y-m-d', strtotime('2011-11-31'))),
...@@ -227,7 +227,7 @@ class Solarium_Query_HelperTest extends PHPUnit_Framework_TestCase ...@@ -227,7 +227,7 @@ class Solarium_Query_HelperTest extends PHPUnit_Framework_TestCase
); );
} }
public function testFormatDateTimeInput() public function testFormatDateInputDateTime()
{ {
$this->assertFalse( $this->assertFalse(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment