Releases: ikvasnica/phpstan-clean-test
Releases · ikvasnica/phpstan-clean-test
v0.4
v0.3.1
v0.3
v0.2
Rules
DisallowSetupAndConstructorRule: Neither of methods __construct
nor setUp
can be declared in a unit test.
AssertSameOverAssertEqualsRule: Calling assertEquals
in tests is forbidden in favor of assertSame
.
StaticAssertOverThisAndStaticRule: Calling $this->assert*, self::assert*
or static::assert*
in tests is forbidden in favor of PHPUnit\Framework\Assert::assert*
.
NoNullableArgumentRule: Nullable arguments and arguments with no type passed to test methods from data providers are forbidden.