ParagonIE\EasyDB\Tests\EasyDBTest::GoodFactoryCreateArgumentProvider PHP Method

GoodFactoryCreateArgumentProvider() public method

Data provider for arguments to be passed to Factory::create These arguments will result in a valid EasyDB instance
    public function GoodFactoryCreateArgumentProvider()
    {
        switch (getenv('DB')) {
            case false:
                return [['sqlite::memory:', null, null, [], 'sqlite']];
                break;
        }
        $this->markTestIncomplete('Could not determine appropriate arguments for ' . Factory::class . '::create() from getenv()');
        return [];
    }