tests/constants.local.ps1


$appveyorPassword = ConvertTo-SecureString 'Password12!' -AsPlainText -Force

# MS SQL
$script:mssqlInstance = 'localhost'
$script:mssqlCredential = [pscredential]::new('sa', $appveyorPassword)

# MySQL
$script:mysqlInstance = 'localhost:3306'
$script:mysqlCredential = [pscredential]::new('root', $appveyorPassword)

# PostgreSQL
$script:postgresqlInstance = 'localhost:5432'
$script:postgresqlCredential = [pscredential]::new('postgres', $appveyorPassword)

# Oracle
$script:oracleInstance = 'localhost'
$script:oracleCredential = [pscredential]::new('sys', (ConvertTo-SecureString 'oracle' -AsPlainText -Force))