Delete unused test case fixture

This commit is contained in:
2024-11-25 20:54:49 +01:00
parent 1e7cd0934e
commit 9ac047d440

View File

@@ -1,13 +0,0 @@
package testutils
import (
"testing"
)
// TestCase defines a generic test case structure that can be used across packages
type TestCase struct {
Name string
Setup func(t *testing.T, fixtures any)
Fixtures any
Validate func(t *testing.T, result any, err error)
}