wikimedia/testing-access-wrapper

A simple helper class to access non-public elements of a class when testing.

Installs: 1 852 838

Dependents: 14

Suggesters: 0

Security: 0

Stars: 4

Watchers: 10

Forks: 1

pkg:composer/wikimedia/testing-access-wrapper

3.0.0 2023-11-28 06:57 UTC

This package is auto-updated.

Last update: 2025-12-03 15:20:03 UTC


README

Latest Stable Version License

Wikimedia Testing Access Wrapper

Testing Access Wrapper is a simple helper for writing unit tests which provides convenient shortcuts for using reflection to access non-public properties/methods.

The code was originally part of MediaWiki. See composer.json for a list of authors.

Usage

use Wikimedia\TestingAccessWrapper; class NonPublic { protected $prop; protected const CONSTANT = 4; protected function func() {} protected static function staticFunc() {} } class NonPublicCtor { protected function __construct() {} } $object = new NonPublic(); // or: // $object = TestingAccessWrapper::construct( NonPublicCtor::class ); $wrapper = TestingAccessWrapper::newFromObject( $object ); $classWrapper = TestingAccessWrapper::newFromClass( NonPublic::class ); $wrapper->prop = 'foo'; $wrapper->func(); $classWrapper->staticFunc(); $value = TestingAccessWrapper::constant( NonPublic::class, 'CONSTANT' );

Running tests

composer install composer test