/**
  * Tests that set and get Modified files return the same.
  */
 public function test_set_and_get_modified_files_return_the_same()
 {
     $report = new Report\Report();
     $items = array('a' => 'b');
     $report->setModifiedFiles($items);
     $this->assertEquals($items, $report->getModifiedFiles());
 }