PartialMockTestClass.php

File

drupal/core/vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php
View source
<?php

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

}

Classes