vector/govector_test.go

30 lines
349 B
Go

package govector
import (
// "fmt"
"testing"
)
func TestSub(t *testing.T) {
p1 := Point2d{10, 10}
p2 := Point2d{5, 5}
v := p1.sub(p2)
if v != (Vector2d{5, 5}) {
t.Errorf("Sub Error")
}
}
func TestMag(t *testing.T) {
p1 := Point2d{10, 10}
p2 := Point2d{7, 6}
v := p1.sub(p2)
m := v.mag()
if m != 5 {
t.Errorf("Mag Error")
}
}