public function getDriver() { return $this->driver->getDriver(); }
/** * @expectedException \Rio\Exception * @expectedExceptionMessage Could not initialize database driver (unknown driver "foo") */ public function testCreatingObjectWithInvalidDriver() { $adapter = new Adapter(['driver' => 'foo']); $adapter->getDriver(); }