diff --git a/Tests/DiscogsService/Cases/Internal/Use Cases/ValidateInputUesCaseTests.swift b/Tests/DiscogsService/Cases/Internal/Use Cases/ValidateInputUesCaseTests.swift index 65689b18c..da9f63571 100644 --- a/Tests/DiscogsService/Cases/Internal/Use Cases/ValidateInputUesCaseTests.swift +++ b/Tests/DiscogsService/Cases/Internal/Use Cases/ValidateInputUesCaseTests.swift @@ -16,7 +16,7 @@ import Testing @testable import DiscogsService -@Suite("Validate Input Use Cases") +@Suite("Validate Input Use Cases", .tags(.useCase)) struct ValidateInputUseCaseTests { // MARK: Functions diff --git a/Tests/DiscogsService/Types/Extensions/Tag+Customs.swift b/Tests/DiscogsService/Types/Extensions/Tag+Customs.swift index a4c60ab30..85184ee9c 100644 --- a/Tests/DiscogsService/Types/Extensions/Tag+Customs.swift +++ b/Tests/DiscogsService/Types/Extensions/Tag+Customs.swift @@ -21,4 +21,7 @@ extension Tag { /// A tag that indicates tests for a middleware type. @Tag static var middleware: Self + /// A tag that indicates tests for a use case type. + @Tag static var useCase: Self + }