- Add HVAC_Test_User_Factory class with: * User creation with specific roles * Multiple role support * Persona management system * Account cleanup integration - Create comprehensive test suite in HVAC_Test_User_Factory_Test.php - Update testing improvement plan documentation - Add implementation decisions to project memory bank - Restructure .gitignore with: * Whitelist approach for better file management * Explicit backup exclusions * Specific bin directory inclusions Part of the Account Management component from the testing framework improvement plan.
20 lines
No EOL
673 B
PHP
20 lines
No EOL
673 B
PHP
<?php
|
|
// Use existing database credentials for staging tests
|
|
define( 'DB_NAME', 'uberrxmprk' );
|
|
define( 'DB_USER', 'uberrxmprk' );
|
|
define( 'DB_PASSWORD', 'vRVr7GJCAZ' );
|
|
define( 'DB_HOST', 'localhost' );
|
|
define( 'DB_CHARSET', 'utf8' );
|
|
define( 'DB_COLLATE', '' );
|
|
|
|
// WordPress test environment configuration
|
|
define( 'ABSPATH', '/home/974670.cloudwaysapps.com/uberrxmprk/public_html/' );
|
|
define( 'WP_DEBUG', true );
|
|
|
|
// Test suite configuration
|
|
define( 'WP_TESTS_DOMAIN', 'wordpress-974670-5399585.cloudwaysapps.com' );
|
|
define( 'WP_TESTS_EMAIL', 'admin@example.com' );
|
|
define( 'WP_TESTS_TITLE', 'Test Blog' );
|
|
|
|
// Load WordPress test environment
|
|
$table_prefix = 'wptests_'; |