feat: Added test cases for s3 api router, server creation and some controllers

This commit is contained in:
jonaustin09
2023-05-19 00:28:07 +04:00
parent 9245aba641
commit a265cd5344
3 changed files with 67 additions and 8 deletions

View File

@@ -17,7 +17,14 @@ func TestS3ApiRouter_Init(t *testing.T) {
sa *S3ApiRouter
args args
}{
// TODO: Add test cases.
{
name: "Initialize S3 api router",
sa: &S3ApiRouter{},
args: args{
app: fiber.New(),
be: backend.BackendUnsupported{},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {