BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
protobuf-php
/
protobuf
/
tests
📤 Upload
📝 New File
📁 New Folder
Close
Editing: TestCase.php
<?php namespace ProtobufTest; use PHPUnit_Framework_TestCase; use Protobuf\Configuration; abstract class TestCase extends PHPUnit_Framework_TestCase { /** * @var \Protobuf\Configuration */ protected $config; protected function setUp() { $this->config = new Configuration(); } /** * @param object $object * @param string $method * @param array $args * * @return mixed */ protected function invokeMethod($object, $method, array $args= []) { $reflection = new \ReflectionMethod($object, $method); $reflection->setAccessible(true); return $reflection->invokeArgs($object, $args); } /** * @param object $object * @param string $property * * @return mixed */ protected function getPropertyValue($object, $property) { $reflection = new \ReflectionProperty($object, $property); $reflection->setAccessible(true); return $reflection->getValue($object); } /** * @param object $object * @param string $property * @param mixed $value */ protected function setPropertyValue($object, $property, $value) { $reflection = new \ReflectionProperty($object, $property); $reflection->setAccessible(true); $reflection->setValue($object, $value); } /** * @param string $name * * @return string */ protected function getProtoContent($name) { $basepath = __DIR__ . '/Resources'; $content = file_get_contents($basepath . '/' . $name); return $content; } }
Save
Cancel