Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Getting Started with PHP Unit Testing Test Driven Development Test Driven Development

Seth Johnson
Seth Johnson
15,199 Points

Tried every combination I could think of, to no avail.

I've been stuck on this portion of this quiz for the last half hour. I'm about to skip it and move on, but it'd be nice to know what it is that I'm doing perpetually wrong. The final attempt I gave to answering this riddle is:

use  PHPUnit\Framework\TestCase;

class MathTest extends TestCase
{
    function testEquation()
    {
        $language = new Language('PHP');

        $this->assertEquals( "$language(creationDate)", 1994 );
    }
}

The "$this->" line was the fill-in-the-blank portion...I get the "assertEquals" part correct, but the parameters thereof are what keep slipping me up. Any help with this would be most appreciated. Thanks!

1 Answer

Perhaps you had the order reversed in what you tried. The error message is "$language(creationDate)", 1994' is incorrect. assertEquals(mixed $expected, mixed $actual). So $expected, in this case 1994, comes first.

$this->assertEquals( 1994, $language->creationDate() );