CountTrait   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 10
c 1
b 0
f 0
dl 0
loc 37
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A the_json_collection_should_have_at_least_elements() 0 5 1
A the_json_path_should_have_at_most_elements() 0 5 1
A the_json_path_should_have_elements() 0 5 1
1
<?php declare(strict_types=1);
2
namespace Behapi\Json;
3
4
use Behapi\Assert\Assert;
5
6
trait CountTrait
7
{
8
    abstract protected function getValue(?string $path);
9
10
    /**
11
     * @Then in the json, the root collection should have at least :count element(s)
12
     * @Then in the json, :path collection should have at least :count element(s)
13
     */
14
    final public function the_json_collection_should_have_at_least_elements(?string $path = null, int $count): void
15
    {
16
        Assert::that($this->getValue($path))
17
            ->isCountable()
18
            ->minCount($count)
19
        ;
20
    }
21
22
    /**
23
     * @Then in the json, the root collection should have :count element(s)
24
     * @Then in the json, :path collection should have :count element(s)
25
     */
26
    final public function the_json_path_should_have_elements(?string $path = null, int $count): void
27
    {
28
        Assert::that($this->getValue($path))
29
            ->isCountable()
30
            ->count($count)
31
        ;
32
    }
33
34
    /**
35
     * @Then in the json, the root collection should have at most :count element(s)
36
     * @Then in the json, :path collection should have at most :count element(s)
37
     */
38
    final public function the_json_path_should_have_at_most_elements(?string $path = null, int $count): void
39
    {
40
        Assert::that($this->getValue($path))
41
            ->isCountable()
42
            ->maxCount($count)
43
        ;
44
    }
45
}
46