<div dir="ltr"><div>Hello.</div><div><br></div><div>This week I was researching how to increase code coverage and found a few things that would make it easier to write unit tests and make the code cleaner.</div><div><br></div><div>The main point is to use dependency injection whenever possible, as this makes it easier to mock the dependencies. To facilitate this, we can reduce the use of static methods in favor of instance methods. This would give us a constructor method, which would make it easier to manage dependencies.</div><div><br></div><div>Another point is that we currently use $GLOBALS as a simplified service locator. We can replace this with the dependency injection container. This would reduce the 'action at a distance' problems, in addition to decoupling the classes.</div><div><br></div><div>I would like to know what you think about it. Any feedback is welcome.<br></div><br clear="all"><div><div class="gmail_signature"><div dir="ltr">MaurĂ­cio Meneghini Fauth</div></div></div>
</div>