getUpdated() public method

Get the updated date
public getUpdated ( ) : DateTime
return DateTime
 public function testGetUpdated()
 {
     $xml = file_get_contents(__DIR__ . '/xml/spreadsheet.xml');
     $spreadsheet = new Spreadsheet(new SimpleXMLElement($xml));
     $this->assertTrue($spreadsheet->getUpdated() instanceof DateTime);
     $this->assertEquals('2014-02-07 18:33:44', $spreadsheet->getUpdated()->format('Y-m-d H:i:s'));
 }
 public function testGetUpdated()
 {
     $spreadsheet = new Spreadsheet($this->getSimpleXMLElement("spreadsheet"));
     $this->assertTrue($spreadsheet->getUpdated() instanceof \DateTime);
     $this->assertEquals("2014-02-07 18:33:44", $spreadsheet->getUpdated()->format("Y-m-d H:i:s"));
 }