| 1 | <?php |
||
| 15 | class MetadataBuilderFactoryTest extends \PHPUnit_Framework_TestCase |
||
| 16 | { |
||
| 17 | public function testMake() |
||
| 18 | { |
||
| 19 | $mb = MetadataBuilderFactory::make( |
||
| 20 | new Types, |
||
| 21 | [ |
||
| 22 | Aggregate::class => new AggregateFactory(new Types), |
||
| 23 | ], |
||
| 24 | new Configuration |
||
| 25 | ); |
||
| 26 | |||
| 27 | $this->assertInstanceOf(MetadataBuilder::class, $mb); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |