Files
versitygw/s3api/router_test.go
2023-05-18 14:32:21 +04:00

28 lines
428 B
Go

package s3api
import (
"testing"
"github.com/gofiber/fiber/v2"
"github.com/versity/scoutgw/backend"
)
func TestS3ApiRouter_Init(t *testing.T) {
type args struct {
app *fiber.App
be backend.Backend
}
tests := []struct {
name string
sa *S3ApiRouter
args args
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tt.sa.Init(tt.args.app, tt.args.be)
})
}
}