package point import ( "testing" "assert" ) func TestAsserts(t *testing.T) { p1 := Point{1, 1} p2 := Point{2, 1} assert.Equal(t, p1, p2) }