apiKey = "special-key"; $this->apiUrl = "http://petstore.swagger.wordnik.com/api"; $this->username = "test"; $this->password = "test"; $this->client = new APIClient($this->apiKey, $this->apiUrl); $this->petApi = new PetApi($this->client); $this->storeApi = new StoreApi($this->client); $this->userApi = new UserApi($this->client); } public function tearDown() { unset($this->client); } } ?>