open-consul/agent/cache/entry_test.go

11 lines
139 B
Go
Raw Normal View History

2018-04-20 00:31:50 +00:00
package cache
import (
"container/heap"
"testing"
)
func TestExpiryHeap_impl(t *testing.T) {
var _ heap.Interface = new(expiryHeap)
}