@@ 8-44 (lines=37) @@ | ||
5 | use ApiClients\Tools\ResourceTestUtilities\Type; |
|
6 | use Generator; |
|
7 | ||
8 | class IntType extends AbstractType implements Type |
|
9 | { |
|
10 | const SCALAR = 'int'; |
|
11 | ||
12 | /** |
|
13 | * Generate random data |
|
14 | * |
|
15 | * @param int $count Amount of rows to generate and return |
|
16 | * @return Generator |
|
17 | */ |
|
18 | public function generate(int $count = 100): Generator |
|
19 | { |
|
20 | for ($i = 0; $i < $count; $i++) { |
|
21 | yield mt_rand($i, $count * mt_rand($i, $count)); |
|
22 | } |
|
23 | } |
|
24 | ||
25 | /** |
|
26 | * List of types that are compatible with this type |
|
27 | * |
|
28 | * @return Generator |
|
29 | */ |
|
30 | public function compatible(): Generator |
|
31 | { |
|
32 | yield static::class; |
|
33 | } |
|
34 | ||
35 | /** |
|
36 | * List of types that are incompatible with this type |
|
37 | * |
|
38 | * @return Generator |
|
39 | */ |
|
40 | public function incompatible(): Generator |
|
41 | { |
|
42 | yield StringType::class; |
|
43 | } |
|
44 | } |
|
45 |
@@ 8-44 (lines=37) @@ | ||
5 | use ApiClients\Tools\ResourceTestUtilities\Type; |
|
6 | use Generator; |
|
7 | ||
8 | class StringType extends AbstractType implements Type |
|
9 | { |
|
10 | const SCALAR = 'string'; |
|
11 | ||
12 | /** |
|
13 | * Generate random data |
|
14 | * |
|
15 | * @param int $count Amount of rows to generate and return |
|
16 | * @return Generator |
|
17 | */ |
|
18 | public function generate(int $count = 100): Generator |
|
19 | { |
|
20 | for ($i = 0; $i < $count; $i++) { |
|
21 | yield (string)mt_rand($i, $count * mt_rand($i, $count)); |
|
22 | } |
|
23 | } |
|
24 | ||
25 | /** |
|
26 | * List of types that are compatible with this type |
|
27 | * |
|
28 | * @return Generator |
|
29 | */ |
|
30 | public function compatible(): Generator |
|
31 | { |
|
32 | yield static::class; |
|
33 | } |
|
34 | ||
35 | /** |
|
36 | * List of types that are incompatible with this type |
|
37 | * |
|
38 | * @return Generator |
|
39 | */ |
|
40 | public function incompatible(): Generator |
|
41 | { |
|
42 | yield IntType::class; |
|
43 | } |
|
44 | } |
|
45 |