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.
28 lines
441 B
28 lines
441 B
5 years ago
|
package student_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/01-edu/z01"
|
||
|
|
||
|
student "./student"
|
||
|
)
|
||
|
|
||
|
func TestSwap(t *testing.T) {
|
||
|
i := 0
|
||
|
for i < 30 {
|
||
|
a := z01.RandInt()
|
||
|
b := z01.RandInt()
|
||
|
aCopy := a
|
||
|
bCopy := b
|
||
|
student.Swap(&a, &b)
|
||
|
if a != bCopy {
|
||
|
t.Errorf("Swap(%d, %d), a == %d instead of %d", aCopy, bCopy, a, bCopy)
|
||
|
}
|
||
|
if b != aCopy {
|
||
|
t.Errorf("Swap(%d, %d), b == %d instead of %d", aCopy, bCopy, b, aCopy)
|
||
|
}
|
||
|
i++
|
||
|
}
|
||
|
}
|