Travis Swientek e5163bb90b Added PHPUnit
2013-07-18 13:01:36 -05:00

19 lines
261 B
PHP

<?php
class PartialMockTestClass
{
public $constructorCalled = FALSE;
public function __construct()
{
$this->constructorCalled = TRUE;
}
public function doSomething()
{
}
public function doAnotherThing()
{
}
}