/**
  * Raises a SkippedTestError to indicate that not all test cases can be
  * run in this environment.
  *
  * @return void
  */
 public function testTraitsSupport()
 {
     $helper = new AutoloaderTestHelper($this);
     if (!$helper->hasTraitsSupport()) {
         $this->markTestSkipped("traits testcases are skipt on PHP < 5.4 systems.");
     }
 }