PhpBench\Tests\Unit\Vcs\Detector\SupplierTest::testNoApplicableProviders PHP Method

testNoApplicableProviders() public method

It should return nothing if all the providers are not applicable.
    public function testNoApplicableProviders()
    {
        $this->supplier->addProvider($this->provider1->reveal());
        $this->supplier->addProvider($this->provider2->reveal());
        $this->provider1->isApplicable()->willReturn(false);
        $this->provider2->isApplicable()->willReturn(false);
        $result = $this->supplier->getInformations();
        $this->assertEquals([], $result);
    }