// Copyright Earl Warren // Copyright Loïc Dachary // SPDX-License-Identifier: MIT package util import ( "testing" "github.com/stretchr/testify/assert" ) func TestRandSeq(t *testing.T) { l := 23 assert.Len(t, RandSeq(l), l) }