"""Unit tests for CheckoutService.""" import pytest from app.modules.checkout.services.checkout_service import CheckoutService @pytest.mark.unit @pytest.mark.checkout class TestCheckoutService: """Test suite for CheckoutService.""" def setup_method(self): self.service = CheckoutService() def test_service_instantiation(self): """Service can be instantiated.""" assert self.service is not None