Spaces:
No application file
No application file
namespace Mautic\LeadBundle\Tests\Controller; | |
use Mautic\CoreBundle\Test\MauticMysqlTestCase; | |
class LeadCompanyControllerTest extends MauticMysqlTestCase | |
{ | |
protected function setUp(): void | |
{ | |
$this->configParams['contact_allow_multiple_companies'] = 0; | |
parent::setUp(); | |
} | |
public function testSimpleCompanyFeature(): void | |
{ | |
$crawler = $this->client->request('GET', 's/contacts/new/'); | |
$multiple = $crawler->filterXPath('//*[@id="lead_companies"]')->attr('multiple'); | |
self::assertNull($multiple); | |
} | |
} | |