Extends
lithium\test\Unit
Verifies workaround for accessing protected properties in filtered methods.
Returns
voidSource
function testFilteringWithProtectedAccess() {
$object = new MockExposed();
$this->assertEqual($object->get(), 'secret');
$this->assertTrue($object->tamper());
$this->assertEqual($object->get(), 'tampered');
}