Esempio n. 1
0
 /**
  * Method to test exists().
  *
  * @return void
  *
  * @covers Windwalker\DI\Container::exists
  */
 public function testExists()
 {
     $this->assertTrue($this->instance->exists('Hello'));
     $this->assertFalse($this->instance->exists('Wind'));
 }