dependency-injection-example
dependency-injection-example copied to clipboard
An introduction to Dependency Injection.
Hi, I'm newbie to TDD so my appologize for that question, but shouldn't we write test for Twitter like for Facebook? `public function testSocialFeedCanBeInstantiated() { $t = M::mock('Example\FeedReaders\FacebookFeedReader'); $s =...
Thanks to the great tutorials! I noticed a mistake in your code https://github.com/daylerees/dependency-injection-example/blob/master/part-9/tests/SocialFeedTest.php#L41 ``` $this->assertEquals($v[0], 'foo'); $this->assertEquals($v[1], 'bar'); $this->assertEquals($v[2], 'baz'); $this->assertEquals($v[3], 'boo'); $this->assertEquals($v[4], 'bop'); ``` In PHPUnit (as well as...