Filippo Tessarotto

Results 56 issues of Filippo Tessarotto

#### What roadmap does this PR target? - [x] Backend Roadmap #### Please acknowledge the items listed below - [ ] I have discussed this contribution and got a go-ahead...

1. [composer.json](https://github.com/beberlei/assert/blob/v2.7.4/composer.json#L16) assert a BSD-2-Clause 1. [All files](https://github.com/beberlei/assert/blob/v2.7.4/lib/Assert/Assertion.php#L8) assert a MIT license 1. [All files](https://github.com/beberlei/assert/blob/v2.7.4/lib/Assert/Assertion.php#L9) assert a non-existent LICENSE.txt file 1. [LICENSE](https://github.com/beberlei/assert/blob/v2.7.4/LICENSE) file doesn't assert a MIT statement I can...

Hi, unlike MySQL, MariaDB stores table names into `INFORMATION_SCHEMA.TABLES` randomly. This result in a different output on different systems. The fix proposed is compatible with both MySQL and MariaDB, all...

Hi, given the raise of static analysis tools that can interpret both DQL ([phpstan-doctrine](https://github.com/phpstan/phpstan-doctrine)) and SQL ([phpstan-dba](https://github.com/staabm/phpstan-dba)) I wonder if and how we can introduce mutators also for queries. The...

Feature Request
Mutator

Hi, I've used quite few times `ignoreSourceCodeByRegex` (both global and per-mutator) and it may happen that, after a refactor, an ignore regex is not necessary anymore. But Infection doesn't tell...

Feature Request
In Progress

Hi, to make [parallel tests](https://codeception.com/docs/12-ParallelExecution) work I need to split the into groups, but my tests are also split with the `include` directive. It turns out the they don't work...

Fixes https://github.com/sebastianbergmann/phpunit/issues/4993 ## Goal Make `static` dependencies explicit and remove Singleton-like behaviours ### What this PR does 1. Adds a test for https://github.com/sebastianbergmann/phpunit/issues/4993 (link: https://github.com/sebastianbergmann/phpunit/pull/4996/files#diff-24645a564406e6eeec905825aedb7665ec71517813988160be0db72ef294a5a5) 2. Removes `static` behaviour of...

| Q | A | --------------------| --------------- | PHPUnit version | 10.0.x-dev | PHP version | 8.1.5 | Installation Method | Composer #### Summary Hi, I'm the maintainer of [ParaTest](https://github.com/paratestphp/paratest),...

feature/test-runner
feature/events

Resolves https://github.com/phpstan/phpstan-phpunit/issues/34

```php final class MyTest extends \PHPUnit\Framework\TestCase { public function testMe(): void { $foo = new class([1]) extends ArrayIterator { public function current(): void { throw new RuntimeException('foo'); } }; $this->expectException(\RuntimeException::class);...