- Add test_server.go with chi-based router, shared in-memory SQLite DB, mock repositories
- Add mock_object_repository.go and mock_appeal_repository.go for lightweight testing
- Add setup.go with TestConfig/TestUser helpers, HTTP request builder, and fixtures
- Add go-sqlite3 dependency for in-memory test database
- Rewrite all 7 integration test suites (account, appeal, auth, comment, feedback, object, rating)
using the new test infrastructure
new file: main_dc/yalarba/api_yal/cmd/testrunner/README.md
new file: main_dc/yalarba/api_yal/cmd/testrunner/main.go
new file: main_dc/yalarba/api_yal/cmd/testrunner/runner.go
deleted: main_dc/yalarba/api_yal/test/intergration/auth_integration_test.go
deleted: main_dc/yalarba/api_yal/test/intergration/objects_integration_test.go
deleted: main_dc/yalarba/api_yal/test/intergration/setup_test.go
deleted: main_dc/yalarba/api_yal/test/setup_test.go
new file: main_dc/yalarba/api_yal/tests/integration/account_test.go
new file: main_dc/yalarba/api_yal/tests/integration/appeal_test.go
new file: main_dc/yalarba/api_yal/tests/integration/auth_test.go
new file: main_dc/yalarba/api_yal/tests/integration/comment_test.go
new file: main_dc/yalarba/api_yal/tests/integration/feedback_test.go
new file: main_dc/yalarba/api_yal/tests/integration/object_test.go
new file: main_dc/yalarba/api_yal/tests/integration/rating_test.go
new file: main_dc/yalarba/api_yal/tests/testutils/client.go
new file: main_dc/yalarba/api_yal/tests/testutils/fixtures.go
new file: main_dc/yalarba/api_yal/tests/testutils/setup.go
write tests