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