object = $this->getMockBuilder(PaymentMethodYooMoney::class)->getMockForAbstractClass(); $this->assertTrue(class_exists(PaymentMethodYooMoney::class)); $this->assertInstanceOf(PaymentMethodYooMoney::class, $this->object); } /** * Test property "type" * * @return void * @throws Exception */ public function testType(): void { $instance = $this->getTestInstance(); self::assertContains($instance->getType(), ['yoo_money']); self::assertContains($instance->type, ['yoo_money']); self::assertNotNull($instance->getType()); self::assertNotNull($instance->type); } /** * 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 "account_number" * @dataProvider validAccountNumberDataProvider * @param mixed $value * * @return void * @throws Exception */ public function testAccountNumber(mixed $value): void { $instance = $this->getTestInstance(); self::assertEmpty($instance->getAccountNumber()); self::assertEmpty($instance->account_number); $instance->setAccountNumber($value); self::assertEquals($value, is_array($value) ? $instance->getAccountNumber()->toArray() : $instance->getAccountNumber()); self::assertEquals($value, is_array($value) ? $instance->account_number->toArray() : $instance->account_number); if (!empty($value)) { self::assertNotNull($instance->getAccountNumber()); self::assertNotNull($instance->account_number); self::assertMatchesRegularExpression("/[0-9]{11,33}/", $instance->getAccountNumber()); self::assertMatchesRegularExpression("/[0-9]{11,33}/", $instance->account_number); } } /** * Test invalid property "account_number" * @dataProvider invalidAccountNumberDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidAccountNumber(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setAccountNumber($value); } /** * @return array[] * @throws Exception */ public function validAccountNumberDataProvider(): array { $instance = $this->getTestInstance(); return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_account_number')); } /** * @return array[] * @throws Exception */ public function invalidAccountNumberDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_account_number')); } }