public function testWrongTableOptionsRead() { $storage = new PdoSessionHandler($this->pdo, array( 'db_table' => 'bad_name', ), array()); $this ->setExpectedException('RuntimeException'); $storage ->read('foo', 'bar'); }