for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace tests;
use heap\AddressableHeapInterface;
use heap\tree\PairingHeap;
class PairingAddressableHeapTest extends AbstractAddressableHeapTest
{
protected function createHeap(): AddressableHeapInterface
return new PairingHeap();
}