feat: create empty unit tests

This commit is contained in:
jonaustin09
2023-05-18 14:32:21 +04:00
parent 65fc6ac986
commit 54e689d62d
3 changed files with 364 additions and 0 deletions

27
s3api/router_test.go Normal file
View File

@@ -0,0 +1,27 @@
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)
})
}
}