We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06e0faa commit b6b0505Copy full SHA for b6b0505
tests/unit/org/nameapi/ontology/input/entities/person/age/AgeInfoFactoryTest.php
@@ -8,9 +8,9 @@ class AgeInfoFactoryTest extends \PHPUnit_Framework_TestCase {
8
9
public function testDate() {
10
$ageInfo = AgeInfoFactory::forDate(1917, 5, 29);
11
- $this->assertEquals($ageInfo->getBirthDay(), 29);
12
- $this->assertEquals($ageInfo->getBirthMonth(), 5);
13
- $this->assertEquals($ageInfo->getBirthYear(), 1917);
+ $this->assertEquals(29, $ageInfo->getBirthDay());
+ $this->assertEquals(5, $ageInfo->getBirthMonth());
+ $this->assertEquals(1917, $ageInfo->getBirthYear());
14
}
15
16
0 commit comments