jaroslavtyc/drd-plus-stamina

View on GitHub
tests/Stamina/FatigueTest.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_can_not_use_negative_value'.
Open

        Fatigue::getEnum(-1);
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_am_stopped_by_specific_exception_on_invalid_value'.
Open

        Fatigue::getIt('Drastic teaching');
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_can_not_use_negative_value'.
Open

        $fatigue = Fatigue::getIt(0);
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Avoid using static access to class '\DrdPlus\Stamina\Fatigue' in method 'I_can_use_it_as_an_integer'.
Open

        $fatigue = Fatigue::getIt(123);
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

The method I_can_use_it_as_an_integer is not named in camelCase.
Open

    public function I_can_use_it_as_an_integer(): void
    {
        $fatigue = Fatigue::getIt(123);
        self::assertInstanceOf(IntegerInterface::class, $fatigue);
        self::assertSame(123, $fatigue->getValue());
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_can_not_use_negative_value is not named in camelCase.
Open

    public function I_can_not_use_negative_value(): void
    {
        $fatigue = Fatigue::getIt(0);
        self::assertInstanceOf(PositiveInteger::class, $fatigue);
        self::assertSame(0, $fatigue->getValue());
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

The method I_am_stopped_by_specific_exception_on_invalid_value is not named in camelCase.
Open

    public function I_am_stopped_by_specific_exception_on_invalid_value(): void
    {
        $this->expectException(\Granam\IntegerEnum\Exceptions\WrongValueForIntegerEnum::class);
        $this->expectExceptionMessageMatches('~Drastic teaching~');
        Fatigue::getIt('Drastic teaching');
Severity: Minor
Found in tests/Stamina/FatigueTest.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

There are no issues that match your filters.

Category
Status