assertTrue( file_exists( $this->getDbPath() ) ); } /** * @depends testItCreatesSchema */ public function testItUpdatesSchema() { $activityPub = new ActivityPub(array( 'dbOptions' => array( 'driver' => 'pdo_sqlite', 'path' => $this->getDbPath(), ), ) ); $activityPub->updateSchema(); $this->assertTrue( file_exists( $this->getDbPath() ) ); } protected function getDbPath() { return dirname( __FILE__ ) . '/db.sqlite'; } } ?>