package student_test import ( "testing" solutions "./solutions" student "./student" "github.com/01-edu/z01" ) func TestAlphaCount(t *testing.T) { var arr []string for l := 0; l < 7; l++ { a := z01.RandIntBetween(5, 20) b := z01.RandASCII() str := z01.RandStr(a, b) arr = append(arr, str) } arr = append(arr, " ") // example from the subject arr = append(arr, "Hello 78 World! 4455 /") for i := 0; i < len(arr); i++ { z01.Challenge(t, student.AlphaCount, solutions.AlphaCount, arr[i]) } }