1234567891011121314151617181920212223242526 |
- package service
- import (
- "flag"
- "testing"
- . "github.com/smartystreets/goconvey/convey"
- "go-common/app/job/live/dao-anchor-job/internal/conf"
- )
- var s *Service
- func init() {
- flag.Set("conf", "../../cmd/test.toml")
- if err := conf.Init(); err != nil {
- panic(err)
- }
- s = New(conf.Conf)
- }
- func TestCover(t *testing.T) {
- Convey("testCover", t, func() {
- s.updateKeyFrame()
- })
- }
|