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.
26 lines
426 B
26 lines
426 B
package archive |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestView3(t *testing.T) { |
|
Convey(t.Name(), t, func() { |
|
d.View3(context.Background(), 1) |
|
}) |
|
} |
|
|
|
func TestViewCache(t *testing.T) { |
|
Convey(t.Name(), t, func() { |
|
d.ViewCache(context.Background(), 1) |
|
}) |
|
} |
|
|
|
func TestDescription(t *testing.T) { |
|
Convey(t.Name(), t, func() { |
|
d.Description(context.Background(), 2) |
|
}) |
|
}
|
|
|