JeroenDesloovere\VCard\tests\VCardParserTest::testOrganization PHP Method

testOrganization() public method

public testOrganization ( )
    public function testOrganization()
    {
        $vcard = new VCard();
        $vcard->addCompany('Lorem Corp.');
        $parser = new VCardParser($vcard->buildVCard());
        $this->assertEquals($parser->getCardAtIndex(0)->organization, 'Lorem Corp.');
    }