Files
openbilibili/app/interface/main/app-intl/dao/archive/view_test.go

27 lines
426 B
Go
Raw Normal View History

2019-04-22 20:46:32 +08:00
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)
})
}