Sonata\Tests\Component\Delivery\SelectorTest::testGetAvailableMethodsWithoutBasket PHP Method

testGetAvailableMethodsWithoutBasket() public method

Test the getAvailableMethods methods with no basket nor address provided.
    public function testGetAvailableMethodsWithoutBasket()
    {
        $deliveryPool = new DeliveryPool();
        $productPool = new ProductPool();
        $selector = new Selector($deliveryPool, $productPool);
        $this->assertEmpty($selector->getAvailableMethods());
    }