mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
341 B
23 lines
341 B
7 years ago
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"sort"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestMetricsSorting(t *testing.T) {
|
||
|
var namedMetrics = namedMetricSlice{
|
||
|
{name: "zzz"},
|
||
|
{name: "bbb"},
|
||
|
{name: "fff"},
|
||
|
{name: "ggg"},
|
||
|
}
|
||
|
|
||
|
sort.Sort(namedMetrics)
|
||
|
for i, name := range []string{"bbb", "fff", "ggg", "zzz"} {
|
||
|
if namedMetrics[i].name != name {
|
||
|
t.Fail()
|
||
|
}
|
||
|
}
|
||
|
}
|