point_test.go 147 B

12345678910111213
  1. package point
  2. import (
  3. "testing"
  4. "assert"
  5. )
  6. func TestAsserts(t *testing.T) {
  7. p1 := Point{1, 1}
  8. p2 := Point{2, 1}
  9. assert.Equal(t, p1, p2)
  10. }