/**
  * Test if the class loader has been added successfully.
  *
  * @return void
  */
 public function testSetGetAttribute()
 {
     $this->application->setAttribute($key = 'test', ApplicationTest::NAME);
     $this->assertSame(ApplicationTest::NAME, $this->application->getAttribute($key));
 }