mirror of https://github.com/status-im/consul.git
11 lines
139 B
Go
11 lines
139 B
Go
|
package cache
|
||
|
|
||
|
import (
|
||
|
"container/heap"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestExpiryHeap_impl(t *testing.T) {
|
||
|
var _ heap.Interface = new(expiryHeap)
|
||
|
}
|