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.
23 lines
509 B
23 lines
509 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
|
||
|
solutions "../../solutions"
|
||
|
)
|
||
|
|
||
|
func TestItoaBaseProg(t *testing.T) {
|
||
|
for i := 0; i < 30; i++ {
|
||
|
value := z01.RandIntBetween(-1000000, 1000000)
|
||
|
base := z01.RandIntBetween(2, 16)
|
||
|
z01.Challenge(t, ItoaBase, solutions.ItoaBase, value, base)
|
||
|
}
|
||
|
for i := 0; i < 5; i++ {
|
||
|
base := z01.RandIntBetween(2, 16)
|
||
|
z01.Challenge(t, ItoaBase, solutions.ItoaBase, z01.MaxInt, base)
|
||
|
z01.Challenge(t, ItoaBase, solutions.ItoaBase, z01.MinInt, base)
|
||
|
}
|
||
|
}
|