Skip to content

Instantly share code, notes, and snippets.

View benmatselby's full-sized avatar

Ben Selby benmatselby

View GitHub Profile
@benmatselby
benmatselby / xhprof-phpunit-config
Created March 28, 2011 18:52
Adding XHProf as a PHPUnit listener
<listeners>
<listener class="PHPUnit_Util_Log_XHProf" file="/usr/lib/php/PHPUnit/Util/Log/XHProf.php">
<arguments>
<array>
<element key="xhprofLibFile">
<string>/Users/ben/Sites/xhprof_lib/utils/xhprof_lib.php</string>
</element>
<element key="xhprofRunsFile">
<string>/Users/ben/Sites/xhprof_lib/utils/xhprof_runs.php</string>
</element>
@benmatselby
benmatselby / PhakeClass.php
Created December 31, 2010 11:27
Mocking of the __call function
<?php
class PhakeClass
{
public function __call($method, $args)
{
return '__call';
}
}