    function it_should_build_a_connection_string_based_on_type()
    {
        $parametersMysql =  [
            'type' => 'mysql',
            'host' => 'localhost',
            'db' => 'db'
        ];
        $this::getConnectionString($parametersMysql)->shouldReturn(
            'mysql:host=localhost;dbname=db'
        );

        $parametersFirebird =  [
            'type' => 'firebird',
            'host' => 'localhost',
            'db' => 'db'
        ];
        $this->getConnectionString($parametersFirebird)->shouldReturn(
            'firebird:dbname=localhost:db'
        );
    }