User Matthew Lurz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:06:28Z http://stackoverflow.com/feeds/user/105375 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/841950/doctrine-profiler-does-not-catch-queries/852889#852889 1 Answer by Matthew Lurz for Doctrine profiler does not catch queries Matthew Lurz 2009-05-12T13:49:49Z 2009-05-12T13:49:49Z <p>There are better approaches, but this may be a better starting point.</p> <p>Assuming the connection and profiler are setup during bootstrap, there are several initial attempts to develop a Doctrine resource plugin see <a href="http://www.nabble.com/RFC%3A-ZendX_Doctrine-to23454552.html" rel="nofollow">http://www.nabble.com/RFC%3A-ZendX_Doctrine-to23454552.html</a> and <a href="http://www.nabble.com/Autoload-models-with-no-namespace-to23387744.html" rel="nofollow">http://www.nabble.com/Autoload-models-with-no-namespace-to23387744.html</a>, you could do something like this in a controller/action:</p> <p><a href="http://pastie.org/475589" rel="nofollow">http://pastie.org/475589</a></p> <p>And then something like this in a layout or view script:</p> <p><a href="http://pastie.org/475593" rel="nofollow">http://pastie.org/475593</a></p> http://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit/852813#852813 0 Answer by Matthew Lurz for Unit testing Doctrine objects with PHPUnit Matthew Lurz 2009-05-12T13:32:10Z 2009-05-12T13:32:10Z <p>In case you haven't found this already, Jani has posted an approach to help automate the setup/teardown process.</p> <p><a href="http://codeutopia.net/blog/2008/08/27/database-helper-for-phpunit/" rel="nofollow">http://codeutopia.net/blog/2008/08/27/database-helper-for-phpunit/</a></p>