/**
  * testgetAllException.
  *
  * Assert that returning all rows from a table that
  * does not exist throws PDOException
  *
  * @expectedException PDOException
  */
 public function testgetAllException()
 {
     $movie = Movies::getAll();
 }