public void TC_LeftistHeap()
        {
            var heap = new LeftistHeap <double>();

            HeapTest(heap, GetDoubleTestList());
            Assert.AreEqual("Leftist Heap", heap.GetName());
        }