razielsd/phpSelenide

View on GitHub
lib/Selenide/Condition/Visible.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class '\PHPUnit\Framework\Assert' in method 'assertCollectionNegative'.
Open

            Assert::assertFalse(
                $element->isDisplayed(),
                $prefix . 'Element is visible'
            );
Severity: Minor
Found in lib/Selenide/Condition/Visible.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 '\PHPUnit\Framework\Assert' in method 'assertCollectionPositive'.
Open

            Assert::assertTrue(
                $element->isDisplayed(),
                $prefix . 'Element is not visible'
            );
Severity: Minor
Found in lib/Selenide/Condition/Visible.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 class Condition_Visible is not named in CamelCase.
Open

class Condition_Visible extends Condition_Rule
    implements Condition_Interface_Match, Condition_Interface_assertCollection
{


Severity: Minor
Found in lib/Selenide/Condition/Visible.php by phpmd

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

There are no issues that match your filters.

Category
Status