samba/pkg/xrand/rand_test.go

10 lines
111 B
Go
Raw Permalink Normal View History

2025-06-04 09:51:39 +08:00
package xrand
import "testing"
func TestShuffle(t *testing.T) {
a := []int{1, 2, 3}
Shuffle(a)
t.Log(a)
}