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.
 
 
 

19 lines
382 B

package income
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func Test_ArchiveBreach(t *testing.T) {
Convey("ArchiveBreach", t, WithService(func(s *Service) {
avID := []int64{}
mid := int64(1)
reason := "test"
operator := "szy"
err := s.ArchiveBreach(context.Background(), 0, avID, mid, reason, operator)
So(err, ShouldBeNil)
}))
}