From 94f060a55ee5f781e4c1c10d0d7ab86d3c7cfdf2 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 5 Mar 2025 00:09:28 +0100 Subject: [PATCH] Added the "enumeration" tag to the AssetPrefix, IndexPrefix, and StaticFile test cases in the tests target. --- Test/Sources/Cases/Internal/Enumerations/AssetPrefixTests.swift | 2 +- Test/Sources/Cases/Internal/Enumerations/IndexPrefixTests.swift | 2 +- Test/Sources/Cases/Internal/Enumerations/StaticFileTests.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Test/Sources/Cases/Internal/Enumerations/AssetPrefixTests.swift b/Test/Sources/Cases/Internal/Enumerations/AssetPrefixTests.swift index 15ccda5..43f39e8 100644 --- a/Test/Sources/Cases/Internal/Enumerations/AssetPrefixTests.swift +++ b/Test/Sources/Cases/Internal/Enumerations/AssetPrefixTests.swift @@ -2,7 +2,7 @@ import Testing @testable import AppLibrary -@Suite("AssetPrefix") +@Suite("AssetPrefix", .tags(.enumeration)) struct AssetPrefixTests { // MARK: Properties tests diff --git a/Test/Sources/Cases/Internal/Enumerations/IndexPrefixTests.swift b/Test/Sources/Cases/Internal/Enumerations/IndexPrefixTests.swift index 09e76b9..e1c6613 100644 --- a/Test/Sources/Cases/Internal/Enumerations/IndexPrefixTests.swift +++ b/Test/Sources/Cases/Internal/Enumerations/IndexPrefixTests.swift @@ -2,7 +2,7 @@ import Testing @testable import AppLibrary -@Suite("IndexPrefix") +@Suite("IndexPrefix", .tags(.enumeration)) struct IndexPrefixTests { @Test(arguments: zip(IndexPrefix.allCases, [String].paths)) diff --git a/Test/Sources/Cases/Internal/Enumerations/StaticFileTests.swift b/Test/Sources/Cases/Internal/Enumerations/StaticFileTests.swift index 6669cce..5bd1425 100644 --- a/Test/Sources/Cases/Internal/Enumerations/StaticFileTests.swift +++ b/Test/Sources/Cases/Internal/Enumerations/StaticFileTests.swift @@ -2,7 +2,7 @@ import Testing @testable import AppLibrary -@Suite("StaticFile") +@Suite("StaticFile", .tags(.enumeration)) struct StaticFileTests { @Test(arguments: zip(StaticFile.allCases, [String].paths))