mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
564 B
40 lines
564 B
5 years ago
|
package student_test
|
||
|
|
||
|
import (
|
||
|
"strconv"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
|
||
|
solutions "./solutions"
|
||
|
student "./student"
|
||
|
)
|
||
|
|
||
|
func TestAtoi(t *testing.T) {
|
||
|
table := make([]string, 30)
|
||
|
for i := range table {
|
||
|
table[i] = strconv.Itoa(z01.RandInt())
|
||
|
}
|
||
|
table = append(table,
|
||
|
strconv.Itoa(z01.MinInt),
|
||
|
strconv.Itoa(z01.MaxInt),
|
||
|
"",
|
||
|
"-",
|
||
|
"+",
|
||
|
"0",
|
||
|
"+0",
|
||
|
"-Invalid123",
|
||
|
"--123",
|
||
|
"-+123",
|
||
|
"++123",
|
||
|
"123-",
|
||
|
"123+",
|
||
|
"123.",
|
||
|
"123.0",
|
||
|
"123a45",
|
||
|
)
|
||
|
for _, arg := range table {
|
||
|
z01.Challenge(t, student.Atoi, solutions.Atoi, arg)
|
||
|
}
|
||
|
}
|