/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Lock/Tests/Strategy/ConsensusStrategyTest.php
85 строк
2 KB
Christian Flothmann
replace PHPUnit annotations with attributes
04 авг 2025, 10:05
04 авг 2025, 10:05
982f89c
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Lock\Tests\Strategy; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\TestCase; use Symfony\Component\Lock\Strategy\ConsensusStrategy; /** * @author Jérémy Derussé <jeremy@derusse.com> */ class ConsensusStrategyTest extends TestCase { private ConsensusStrategy $strategy; protected function setUp(): void { $this->strategy = new ConsensusStrategy(); } public static function provideMetResults() { // success, failure, total, isMet yield [3, 0, 3, true]; yield [2, 1, 3, true]; yield [2, 0, 3, true]; yield [1, 2, 3, false]; yield [1, 1, 3, false]; yield [1, 0, 3, false]; yield [0, 3, 3, false]; yield [0, 2, 3, false]; yield [0, 1, 3, false]; yield [0, 0, 3, false]; yield [2, 0, 2, true]; yield [1, 1, 2, false]; yield [1, 0, 2, false]; yield [0, 2, 2, false]; yield [0, 1, 2, false]; yield [0, 0, 2, false]; } public static function provideIndeterminate() { // success, failure, total, canBeMet yield [3, 0, 3, true]; yield [2, 1, 3, true]; yield [2, 0, 3, true]; yield [1, 2, 3, false]; yield [1, 1, 3, true]; yield [1, 0, 3, true]; yield [0, 3, 3, false]; yield [0, 2, 3, false]; yield [0, 1, 3, true]; yield [0, 0, 3, true]; yield [2, 0, 2, true]; yield [1, 1, 2, false]; yield [1, 0, 2, true]; yield [0, 2, 2, false]; yield [0, 1, 2, false]; yield [0, 0, 2, true]; } #[DataProvider('provideMetResults')] public function testMet($success, $failure, $total, $isMet) { $this->assertSame($isMet, $this->strategy->isMet($success, $total)); } #[DataProvider('provideIndeterminate')] public function testCanBeMet($success, $failure, $total, $isMet) { $this->assertSame($isMet, $this->strategy->canBeMet($failure, $total)); } }