Beispiel #1
0
 function testSharedInstance()
 {
     $this->app->register('reg4', 'User');
     $user1 = $this->app->reg4();
     $user2 = $this->app->reg4();
     $user3 = $this->app->reg4(false);
     $this->assertTrue($user1 === $user2);
     $this->assertTrue($user1 !== $user3);
 }