[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
vendor
/
level-2
/
dice
/
tests
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 TestData
SET
[ DEL ]
📄 BasicTest.php
5,916 B
SET
[ EDIT ]
|
[ DEL ]
📄 CallTest.php
2,584 B
SET
[ EDIT ]
|
[ DEL ]
📄 ChainTest.php
2,558 B
SET
[ EDIT ]
|
[ DEL ]
📄 ConstructParamsTest.php
3,932 B
SET
[ EDIT ]
|
[ DEL ]
📄 CreateArgsTest.php
2,858 B
SET
[ EDIT ]
|
[ DEL ]
📄 DiceTest.php
1,224 B
SET
[ EDIT ]
|
[ DEL ]
📄 NamedInstancesTest.php
3,624 B
SET
[ EDIT ]
|
[ DEL ]
📄 NamespaceTest.php
2,039 B
SET
[ EDIT ]
|
[ DEL ]
📄 ShareInstancesTest.php
3,755 B
SET
[ EDIT ]
|
[ DEL ]
📄 SubstitutionsTest.php
2,966 B
SET
[ EDIT ]
|
[ DEL ]
📄 bootstrap.php
344 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ChainTest.php
<?php /* @description Dice - A minimal Dependency Injection Container for PHP * * @author Tom Butler tom@r.je * * @copyright 2012-2018 Tom Butler <tom@r.je> | https:// r.je/dice.html * * @license http:// www.opensource.org/licenses/bsd-license.php BSD License * * @version 3.0 */ class ChainTest extends DiceTest { public function testChainCall() { $dice = $this->dice->addRules([ '$someClass' => [ 'instanceOf' => 'Factory', 'call' => [ ['get', [], \Dice\Dice::CHAIN_CALL] ] ] ]); $obj = $dice->create('$someClass'); $this->assertInstanceOf('FactoryDependency', $obj); } public function testMultipleChainCall() { $dice = $this->dice->addRules([ '$someClass' => [ 'instanceOf' => 'Factory', 'call' => [ ['get', [], \Dice\Dice::CHAIN_CALL], ['getBar', [], \Dice\Dice::CHAIN_CALL] ] ] ]); $obj = $dice->create('$someClass'); $this->assertEquals('bar', $obj); } public function testChainCallShared() { $dice = $this->dice->addRules([ '$someClass' => [ 'shared' => true, 'instanceOf' => 'Factory', 'call' => [ ['get', [], \Dice\Dice::CHAIN_CALL] ] ] ]); $obj = $dice->create('$someClass'); $this->assertInstanceOf('FactoryDependency', $obj); } public function testChainCallInject() { $dice = $this->dice->addRules([ 'FactoryDependency' => [ 'instanceOf' => 'Factory', 'call' => [ ['get', [], \Dice\Dice::CHAIN_CALL] ] ] ]); $obj = $dice->create('RequiresFactoryDependecy'); $this->assertInstanceOf('FactoryDependency', $obj->dep); } public function testChainCallInjectShared() { $dice = $this->dice->addRules([ 'FactoryDependency' => [ 'shared' => true, 'instanceOf' => 'Factory', 'call' => [ ['get', [], \Dice\Dice::CHAIN_CALL] ] ] ]); $dice->create('FactoryDependency'); $obj = $dice->create('RequiresFactoryDependecy'); $this->assertInstanceOf('FactoryDependency', $obj->dep); $obj2 = $dice->create('RequiresFactoryDependecy'); $this->assertNotSame($obj, $obj2); $this->assertSame($obj->dep, $obj2->dep); } } class Factory { public function get() { return new FactoryDependency; } } class FactoryDependency { public function getBar() { return 'bar'; } } class RequiresFactoryDependecy { public $dep; public function __construct(FactoryDependency $dep) { $this->dep = $dep; } }