File: package_test.go

package info (click to toggle)
golang-testify 1.1.3%2Bgit20160418.12.c5d7a69%2Bds-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 388 kB
  • sloc: makefile: 13
file content (12 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
package testify

import (
	"github.com/stretchr/testify/assert"
	"testing"
)

func TestImports(t *testing.T) {
	if assert.Equal(t, 1, 1) != true {
		t.Error("Something is wrong.")
	}
}