diff --git a/test/Faker/Provider/nl_NL/PersonTest.php b/test/Faker/Provider/nl_NL/PersonTest.php deleted file mode 100644 index 16f32cc2..00000000 --- a/test/Faker/Provider/nl_NL/PersonTest.php +++ /dev/null @@ -1,46 +0,0 @@ - - */ -class PersonTest extends \PHPUnit_Framework_TestCase -{ - /** - * @var \Faker\Generator - */ - private $faker; - - public function setUp() - { - $faker = new \Faker\Generator(); - $faker->addProvider(new \Faker\Provider\nl_NL\Person($faker)); - - $this->faker = $faker; - } - - public function testGeneratingFirstNames() - { - for ($i=0; $i<50; $i++) - { - $this->assertInternalType('string', $this->faker->firstName()); - } - } - - public function testGeneratingLastNames() - { - for ($i=0; $i<50; $i++) - { - $this->assertInternalType('string', $this->faker->lastName()); - } - } - - public function testGeneratingNames() - { - for ($i=0; $i<50; $i++) - { - $this->assertInternalType('string', $this->faker->name()); - } - } -} \ No newline at end of file