Api_GpTest::testSearchByIdNotFound PHP Method

testSearchByIdNotFound() public method

    public function testSearchByIdNotFound()
    {
        $this->get('Practitioner?_id=gp-666666&_profile=' . urlencode(services\Gp::getOeFhirProfile()));
        $this->assertXPathEquals('feed', 'local-name()');
        $this->assertXPathEquals($this->client->getBaseUrl(), 'string(./atom:link[@rel="base"]/@href)');
        $this->assertUrlEquals($this->client->getBaseUrl() . '/Practitioner?_id=gp-666666&_profile=' . urlencode(services\Gp::getOeFhirProfile()), $this->xPathEval('string(./atom:link[@rel="self"]/@href)'));
        $this->assertXPathCount(0, './atom:entry');
    }