You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
21 lines
438 B
package view |
|
|
|
import ( |
|
"errors" |
|
"testing" |
|
"time" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func Test_ViewInfoc(t *testing.T) { |
|
Convey("ViewInfoc", t, func() { |
|
s.ViewInfoc(0, 0, "test", "0", "", "", "", "", "", "", time.Now(), errors.New("test"), 1, "", "") |
|
}) |
|
} |
|
|
|
func Test_RelateInfoc(t *testing.T) { |
|
Convey("RelateInfoc", t, func() { |
|
s.RelateInfoc(0, 0, 0, "", "", "", "", "", "", "", "", "", nil, time.Now(), 0) |
|
}) |
|
}
|
|
|