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