suin/php-expose

Makes non-public properties and methods be testable to help your unit tests with PHPUnit.

Installs: 6 889

Dependents: 13

Suggesters: 0

Security: 0

Stars: 5

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/suin/php-expose

1.0 2012-09-16 08:57 UTC

This package is auto-updated.

Last update: 2025-10-06 10:36:32 UTC


README

Expose makes non-public properties and methods be testable to help your unit tests with PHPUnit.

The build status of the current master branch is tracked by Travis CI: Build Status

<?php
use \Expose\Expose as e;

class Object
{
	private $_secret;
	protected $_protected;

	private function _hello($world = 'World')
	{
		return sprintf('Hello, %s', $world);
	}
}

$object = new Object();

// Expose non-public properties
e::expose($object)
	->attr('_secret', 'foo')
	->attr('_protected', 'bar');

// Call non-public method
$result = e::expose($object)->call('_hello', 'Suin');

Requirements

  • PHP 5.3 or later

Installation

Just git-clone or inntall via composer.

composer.json:

{
	"require": {
		"suin/php-expose": ">=1.0"
	}
}

Inclue vendor/autoload.php in your bootstrap.php of PHPUnit to load Expose components:

require_once 'vendor/autoload.php';

License

MIT License