public function testTypePropertiesSet() { $utilities = $this->getMockBuilder('Faker\\Components\\Engine\\Common\\Utilities')->disableOriginalConstructor()->getMock(); $generator = $this->getMock('\\PHPStats\\Generator\\GeneratorInterface'); $locale = $this->getMock('\\Faker\\Locale\\LocaleInterface'); $event = $this->getMockBuilder('Symfony\\Component\\EventDispatcher\\EventDispatcherInterface')->getMock(); $database = $this->getMockBuilder('Doctrine\\DBAL\\Connection')->disableOriginalConstructor()->getMock(); $type = new AutoIncrementTypeDefinition(); $type->eventDispatcher($event); $type->database($database); $type->locale($locale); $type->utilities($utilities); $type->generator($generator); $typeNode = $type->startAtValue(100)->incrementByValue(500)->getNode(); $interalType = $typeNode->getType(); $this->assertEquals(100, $interalType->getOption('start')); $this->assertEquals(500, $interalType->getOption('increment')); $this->assertEquals($generator, $interalType->getGenerator()); $this->assertEquals($locale, $interalType->getLocale()); $this->assertEquals($utilities, $interalType->getUtilities()); }
public function end() { return parent::end(); }