7 require_once(
"libs/composer/vendor/autoload.php");
26 $m = $this->mock->withOnLoadCode(
function ($id) {
27 return "Its me, $id!";
30 $binder = $m->getOnLoadCode();
31 $this->assertInstanceOf(\Closure::class, $binder);
32 $this->assertEquals(
"Its me, Mario!", $binder(
"Mario"));
38 $this->mock->withOnLoadCode(
function () {
40 $this->assertFalse(
"This should not happen...");
42 $this->assertTrue(
true);
49 $this->mock->withOnLoadCode(
function ($id, $some_arg) {
51 $this->assertFalse(
"This should not happen...");
53 $this->assertTrue(
true);
60 ->withOnLoadCode(
function ($id) {
61 return "Its me, $id!";
64 return "And again, me: $id.";
67 $binder = $m->getOnLoadCode();
68 $this->assertInstanceOf(\Closure::class, $binder);
69 $this->assertEquals(
"Its me, Mario!\nAnd again, me: Mario.", $binder(
"Mario"));
75 ->withAdditionalOnLoadCode(
function ($id) {
76 return "And again, me: $id.";
79 $binder = $m->getOnLoadCode();
80 $this->assertInstanceOf(\Closure::class, $binder);
81 $this->assertEquals(
"And again, me: Mario.", $binder(
"Mario"));
test_withOnLoadCode_false_closure_1()
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
test_withOnLoadCode_false_closure_2()
withAdditionalOnLoadCode(\Closure $binder)
test_withAdditionalOnLoadCode()
test_withAdditionalOnLoadCode_no_previous()