addProvider(new Company($faker)); $this->faker = $faker; } public function testGenerateValidCompanyNumber() { $companyRegNo = $this->faker->companyNumber(); $this->assertEquals(14, strlen($companyRegNo)); $this->assertRegExp('#^\d{4}/\d{6}/\d{2}$#', $companyRegNo); } }