object = $this->getMockBuilder(Source::class)->getMockForAbstractClass(); $this->assertTrue(class_exists(Source::class)); $this->assertInstanceOf(Source::class, $this->object); } /** * Test property "account_id" * @dataProvider validAccountIdDataProvider * @param mixed $value * * @return void * @throws Exception */ public function testAccountId(mixed $value): void { $instance = $this->getTestInstance(); $instance->setAccountId($value); self::assertNotNull($instance->getAccountId()); self::assertNotNull($instance->account_id); self::assertEquals($value, is_array($value) ? $instance->getAccountId()->toArray() : $instance->getAccountId()); self::assertEquals($value, is_array($value) ? $instance->account_id->toArray() : $instance->account_id); } /** * Test invalid property "account_id" * @dataProvider invalidAccountIdDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidAccountId(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setAccountId($value); } /** * @return array[] * @throws Exception */ public function validAccountIdDataProvider(): array { $instance = $this->getTestInstance(); return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_account_id')); } /** * @return array[] * @throws Exception */ public function invalidAccountIdDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_account_id')); } /** * Test property "amount" * @dataProvider validAmountDataProvider * @param mixed $value * * @return void * @throws Exception */ public function testAmount(mixed $value): void { $instance = $this->getTestInstance(); $instance->setAmount($value); self::assertNotNull($instance->getAmount()); self::assertNotNull($instance->amount); self::assertTrue($instance->hasAmount()); self::assertEquals($value, is_array($value) ? $instance->getAmount()->toArray() : $instance->getAmount()); self::assertEquals($value, is_array($value) ? $instance->amount->toArray() : $instance->amount); } /** * Test invalid property "amount" * @dataProvider invalidAmountDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidAmount(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setAmount($value); } /** * @return array[] * @throws Exception */ public function validAmountDataProvider(): array { $instance = $this->getTestInstance(); return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_amount')); } /** * @return array[] * @throws Exception */ public function invalidAmountDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_amount')); } /** * Test property "platform_fee_amount" * @dataProvider validPlatformFeeAmountDataProvider * @param mixed $value * * @return void * @throws Exception */ public function testPlatformFeeAmount(mixed $value): void { $instance = $this->getTestInstance(); self::assertEmpty($instance->getPlatformFeeAmount()); self::assertEmpty($instance->platform_fee_amount); $instance->setPlatformFeeAmount($value); self::assertEquals($value, is_array($value) ? $instance->getPlatformFeeAmount()->toArray() : $instance->getPlatformFeeAmount()); self::assertEquals($value, is_array($value) ? $instance->platform_fee_amount->toArray() : $instance->platform_fee_amount); if (!empty($value)) { self::assertTrue($instance->hasPlatformFeeAmount()); self::assertNotNull($instance->getPlatformFeeAmount()); self::assertNotNull($instance->platform_fee_amount); } } /** * Test invalid property "platform_fee_amount" * @dataProvider invalidPlatformFeeAmountDataProvider * @param mixed $value * @param string $exceptionClass * * @return void */ public function testInvalidPlatformFeeAmount(mixed $value, string $exceptionClass): void { $instance = $this->getTestInstance(); $this->expectException($exceptionClass); $instance->setPlatformFeeAmount($value); } /** * @return array[] * @throws Exception */ public function validPlatformFeeAmountDataProvider(): array { $instance = $this->getTestInstance(); return $this->getValidDataProviderByType($instance->getValidator()->getRulesByPropName('_platform_fee_amount')); } /** * @return array[] * @throws Exception */ public function invalidPlatformFeeAmountDataProvider(): array { $instance = $this->getTestInstance(); return $this->getInvalidDataProviderByType($instance->getValidator()->getRulesByPropName('_platform_fee_amount')); } }