the super user name, * ... * ) These profiles are only used to create the admin test role (or user) on each server. */ $super_user= array( 'PostgreSQL' => 'ppa_user', 'Test Server' => 'ppa_user', ); /* Associative array with the super user passwords for each configured server in your conf/config.inc.php : * $super_pass = array( * the 'desc' part of the server in your conf/config.inc.php => the super user password, * ... * ) */ $super_pass= array( 'PostgreSQL' => 'secret', 'Test Server' => 'password', ); // name and pass of the admin user to create for tests $admin_user = 'admin_user'; $admin_user_pass = 'super'; // name and pass of the user to create for tests $user = 'ppa_tests_user'; $user_pass = 'ppa_tests_user_pass'; // name of the database to create for tests $testdb = 'ppatests_db'; ?>