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