File: point_test.go

package info (click to toggle)
golang-github-bmizerany-assert 0.0~git20120716-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 68 kB
  • sloc: makefile: 4
file content (13 lines) | stat: -rw-r--r-- 147 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package point

import (
	"testing"
	"assert"
)

func TestAsserts(t *testing.T) {
	p1 := Point{1, 1}
	p2 := Point{2, 1}

	assert.Equal(t, p1, p2)
}