ShuffleStrings uses a seeded rand object

This commit is contained in:
Abhishek Shah
2015-09-09 12:08:57 -07:00
parent 891cef4efa
commit da06ecfc1f
3 changed files with 25 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ limitations under the License.
package rand
import (
"math/rand"
"strings"
"testing"
)
@@ -35,3 +36,17 @@ func TestString(t *testing.T) {
}
}
}
func TestPerm(t *testing.T) {
Seed(5)
rand.Seed(5)
for i := 1; i < 20; i++ {
actual := Perm(i)
expected := rand.Perm(i)
for j := 0; j < i; j++ {
if actual[j] != expected[j] {
t.Errorf("Perm call result is unexpected")
}
}
}
}