uid = 'user123'; $this->user = 'User123'; $this->password = '123456'; $this->credentials = new Credentials($this->uid, $this->user, $this->password); } public function testGetUID(): void { $this->assertEquals($this->uid, $this->credentials->getUID()); } public function testGetUserName(): void { $this->assertEquals($this->user, $this->credentials->getLoginName()); } public function testGetPassword(): void { $this->assertEquals($this->password, $this->credentials->getPassword()); } }