Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
96.00% |
24 / 25 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
BoundedContextFactory | |
96.00% |
24 / 25 |
|
75.00% |
3 / 4 |
4 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
createHashmap | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |||
createHashmapWithMultipleContexts | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
1 | |||
createExample | |
100.00% |
10 / 10 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Fixtures; |
3 | |
4 | use Apie\Core\BoundedContext\BoundedContext; |
5 | use Apie\Core\BoundedContext\BoundedContextHashmap; |
6 | use Apie\Core\BoundedContext\BoundedContextId; |
7 | use Apie\Core\Lists\ReflectionClassList; |
8 | use Apie\Core\Lists\ReflectionMethodList; |
9 | use Apie\Fixtures\Actions\StaticActionExample; |
10 | use Apie\Fixtures\Entities\Order; |
11 | use Apie\Fixtures\Entities\Polymorphic\Animal; |
12 | use Apie\Fixtures\Entities\UserWithAddress; |
13 | use Apie\Fixtures\Entities\UserWithAutoincrementKey; |
14 | use ReflectionClass; |
15 | use ReflectionMethod; |
16 | |
17 | final class BoundedContextFactory |
18 | { |
19 | private function __construct() |
20 | { |
21 | } |
22 | |
23 | public static function createHashmap(): BoundedContextHashmap |
24 | { |
25 | return new BoundedContextHashmap([ |
26 | 'default' => self::createExample(), |
27 | ]); |
28 | } |
29 | |
30 | public static function createHashmapWithMultipleContexts(): BoundedContextHashmap |
31 | { |
32 | return new BoundedContextHashmap([ |
33 | 'default' => self::createExample(), |
34 | 'other' => new BoundedContext( |
35 | new BoundedContextId('other'), |
36 | new ReflectionClassList([ |
37 | new ReflectionClass(UserWithAutoincrementKey::class), |
38 | new ReflectionClass(Animal::class), |
39 | ]), |
40 | new ReflectionMethodList(), |
41 | ) |
42 | ]); |
43 | } |
44 | |
45 | public static function createExample(): BoundedContext |
46 | { |
47 | return new BoundedContext( |
48 | new BoundedContextId('default'), |
49 | new ReflectionClassList([ |
50 | new ReflectionClass(UserWithAddress::class), |
51 | new ReflectionClass(Order::class) |
52 | ]), |
53 | new ReflectionMethodList([ |
54 | new ReflectionMethod(StaticActionExample::class, 'secretCode'), |
55 | ]) |
56 | ); |
57 | } |
58 | } |