// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See the LICENSE file in builder/azure for license information. package common import ( "testing" ) func TestRandomPassword_generates_15char_passwords(t *testing.T) { for i := 0; i < 100; i++ { pw := RandomPassword() t.Logf("pw: %v", pw) if len(pw) != 15 { t.Fatalf("len(pw)!=15, but %v: %v (%v)", len(pw), pw, i) } } }