Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 1


Q: 

Check out the following test:

class DinoProtectorTest extends TestCase
{
    /** @dataProvider getHumanTests */
    public function testDinosDontEatMostHumans(int $tastinessOfHuman, bool $expectedEatenStatus): void
    {
        // ...
    }

    public function getHumanTests(): \Generator
    {
        yield 'yucky_humans_no_way' => [0, false];
    }
}

Which of the following would not result in our test being executed?

userVoice