Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php')
-rw-r--r--vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php b/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
new file mode 100644
index 0000000..0609993
--- /dev/null
+++ b/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
@@ -0,0 +1,18 @@
+<?php
+class PartialMockTestClass
+{
+ public $constructorCalled = false;
+
+ public function __construct()
+ {
+ $this->constructorCalled = true;
+ }
+
+ public function doSomething()
+ {
+ }
+
+ public function doAnotherThing()
+ {
+ }
+}