OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / stretchr / testify / package_test.go
1 package testify
2
3 import (
4         "github.com/stretchr/testify/assert"
5         "testing"
6 )
7
8 func TestImports(t *testing.T) {
9         if assert.Equal(t, 1, 1) != true {
10                 t.Error("Something is wrong.")
11         }
12 }