Kohana v3.3.0
This commit is contained in:
18
vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php
vendored
Normal file
18
vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
class PartialMockTestClass
|
||||
{
|
||||
public $constructorCalled = FALSE;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->constructorCalled = TRUE;
|
||||
}
|
||||
|
||||
public function doSomething()
|
||||
{
|
||||
}
|
||||
|
||||
public function doAnotherThing()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user