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.
 
 
 
 

27 lines
441 B

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.Fatalf("Swap(%d, %d), a == %d instead of %d", aCopy, bCopy, a, bCopy)
}
if b != aCopy {
t.Fatalf("Swap(%d, %d), b == %d instead of %d", aCopy, bCopy, b, aCopy)
}
i++
}
}