quorum/whisper/sort_test.go

24 lines
331 B
Go
Raw Normal View History

package whisper
2015-03-20 16:57:18 -07:00
import (
"testing"
"github.com/ethereum/go-ethereum/common"
)
func TestSorting(t *testing.T) {
2015-03-20 16:57:18 -07:00
m := map[int32]common.Hash{
1: {1},
3: {3},
2: {2},
5: {5},
}
exp := []int32{1, 2, 3, 5}
res := sortKeys(m)
for i, k := range res {
if k != exp[i] {
t.Error(k, "failed. Expected", exp[i])
}
}
}