object = $this->getMockBuilder(ConfirmationAttributesEmbedded::class)->getMockForAbstractClass(); $this->assertTrue(class_exists(ConfirmationAttributesEmbedded::class)); $this->assertInstanceOf(ConfirmationAttributesEmbedded::class, $this->object); } /** * Test property "type" * * @return void * @throws Exception */ public function testType(): void { $instance = $this->getTestInstance(); self::assertNotNull($instance->getType()); self::assertNotNull($instance->type); self::assertContains($instance->getType(), ['embedded']); self::assertContains($instance->type, ['embedded']); } /** * Test invalid property "type" * @dataProvider invalidTypeDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidType(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setType($value); } /** * @return array[] * @throws Exception */ public function invalidTypeDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_type')); } /** * Test property "locale" * @dataProvider validLocaleDataProvider * @param mixed $value * * @return void * @throws Exception */ public function testLocale(mixed $value): void { $instance = $this->getTestInstance(); self::assertEmpty($instance->getLocale()); self::assertEmpty($instance->locale); $instance->setLocale($value); self::assertEquals($value, is_array($value) ? $instance->getLocale()->toArray() : $instance->getLocale()); self::assertEquals($value, is_array($value) ? $instance->locale->toArray() : $instance->locale); if (!empty($value)) { self::assertNotNull($instance->getLocale()); self::assertNotNull($instance->locale); } } /** * Test invalid property "locale" * @dataProvider invalidLocaleDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidLocale(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setLocale($value); } /** * @return array[] * @throws Exception */ public function validLocaleDataProvider(): array { $instance = $this->getTestInstance(); return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_locale')); } /** * @return array[] * @throws Exception */ public function invalidLocaleDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_locale')); } }