mock_test.go 181 B

12345678910111213
  1. package mock_dao
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestFake(t *testing.T) {
  7. Convey("Test fake", t, func() {
  8. t.Log("nothing here")
  9. })
  10. }