client = new Client(); $this->client ->setEndpoint($this->endpoint) ; $this->demoEmail = 'user.' . rand(0, 1000000) . '@appwrite.io'; $this->demoPassword = 'password.' . rand(0, 1000000); } public function tearDown() { $this->client = null; } public function register() { $response = $this->client->call(Client::METHOD_POST, '/auth/register', [ 'origin' => 'http://localhost', 'content-type' => 'application/json', ], [ 'email' => $this->demoEmail, 'password' => $this->demoPassword, 'confirm' => 'http://localhost/confirm', 'success' => 'http://localhost/success', 'failure' => 'http://localhost/failure', 'name' => 'Demo User', ]); return $response; } }