- 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.
21 lines
No EOL
565 B
PHP
21 lines
No EOL
565 B
PHP
<?php
|
|
// Test database configuration
|
|
define('DB_NAME', 'wordpress_test');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASSWORD', '');
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_CHARSET', 'utf8');
|
|
define('DB_COLLATE', '');
|
|
|
|
// Test environment
|
|
define('WP_TESTS_DOMAIN', 'localhost');
|
|
define('WP_TESTS_EMAIL', 'admin@example.com');
|
|
define('WP_TESTS_TITLE', 'Test Blog');
|
|
|
|
// Debug mode
|
|
define('WP_DEBUG', true);
|
|
define('WP_DEBUG_LOG', true);
|
|
define('WP_DEBUG_DISPLAY', true);
|
|
|
|
// Test suite paths
|
|
define('ABSPATH', '/home/974670.cloudwaysapps.com/uberrxmprk/public_html/'); |