/**
  * @test
  */
 public function sectionWithoutDefaultValueReturnsEmptyArrayIfSectionDoesNotExist()
 {
     assertEmptyArray($this->properties->section('doesNotExist'));
 }
 /**
  * @test
  */
 public function returnsEmptyListOfAllResourceUrisForNonExistingFile()
 {
     assertEmptyArray($this->resourceLoader->availableResourceUris('doesnot.exist'));
 }
 /**
  * @test
  */
 public function listOfSourcePathesIsEmptyIfNoAutoloaderPresent()
 {
     assertEmptyArray(Rootpath::castFrom(__DIR__)->sourcePathes());
 }
 /**
  * @test
  */
 public function returnsEmptyListIfNoneOfThisTypeAdded()
 {
     assertEmptyArray($this->annotations->named('foo'));
 }