diff --git a/server/internal/testutils/assertions.go b/server/internal/testutils/assertions.go deleted file mode 100644 index 5bbfa23..0000000 --- a/server/internal/testutils/assertions.go +++ /dev/null @@ -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) -}