8 public function __construct( $userName, $password, $group = '' ) {
9 $this->userName
= $userName;
10 $this->password
= $password;
12 $this->user
= User
::newFromName( $this->userName
);
13 if ( !$this->user
->getId() ) {
14 $this->user
= User
::createNew( $this->userName
, [
15 "email" => "test@example.com",
16 "real_name" => "Test User" ] );
18 TestUser
::setPasswordForUser( $this->user
, $this->password
);
20 if ( $group !== '' ) {
21 $this->user
->addGroup( $group );
23 $this->user
->saveSettings();