SevenShores\Hubspot\Tests\Integration\Resources\CompanyPropertiesTest::get PHP Method

get() public method

public get ( )
    public function get()
    {
        $createdPropertyResponse = $this->createCompanyProperty();
        $response = $this->companyProperties->get($createdPropertyResponse->name);
        $this->assertEquals(200, $response->getStatusCode());
        $this->assertEquals('Custom property', $response->label);
    }