├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ ├── code-coverage.yml │ ├── experimental-tests.yml │ ├── ios-tests.yml │ └── multiplatform-tests.yml ├── .gitignore ├── .spi.yml ├── .swiftlint.yml ├── .travis.yml ├── CodableWrappers.podspec ├── CodingKeyMacrosDocumentation.md ├── CustomExamples.md ├── LICENSE ├── Package.swift ├── PropertyWrappersDocumentation.md ├── README.md ├── ReleaseNotes.md ├── Sources ├── CodableMacros │ └── CodableMacros.swift ├── CodableWrapperMacros │ ├── CodableWrapperMacros.swift │ ├── CodingKeys │ │ ├── CodingKeyMacros.swift │ │ ├── CodingKeyTypes.swift │ │ └── CodingKeysGenerator.swift │ ├── Convenience │ │ ├── ConvenienceExtensions.swift │ │ ├── DebuggingHelpers.swift │ │ └── DiagnosticConvenience.swift │ ├── ErrorHandling.swift │ └── TypeMacroContainers.swift ├── CodableWrappers │ ├── CodableMacros │ │ └── CodableMacros.swift │ ├── CodableWrappers.docc │ │ ├── BoolCustomization.md │ │ ├── BuildingBlocks.md │ │ ├── CodableWrappers.md │ │ ├── CustomCodingKeys.md │ │ ├── DataCustomization.md │ │ ├── DateCustomization.md │ │ ├── Fallbacks.md │ │ ├── LossyCollections.md │ │ ├── NullHandling.md │ │ ├── NumberCustomization.md │ │ └── SerializationCustomization.md │ ├── Convenience │ │ ├── ConveienceAdherence.swift │ │ ├── CustomWrappers.swift │ │ ├── Deprecations.swift │ │ └── EmptyDefaults.swift │ ├── Core │ │ ├── FallbackCoding.swift │ │ ├── ImmutableWrapper.swift │ │ ├── OmitCodingWrappers.swift │ │ ├── OptionalWrappers.swift │ │ ├── StaticCodingWrappers.swift │ │ └── TransientCoding.swift │ └── StaticCoders │ │ ├── BoolCoding.swift │ │ ├── DataCoding.swift │ │ ├── DateCoding.swift │ │ ├── FloatingPointCoding.swift │ │ ├── NilFiltering.swift │ │ ├── NullEncoding.swift │ │ └── StaticCoding.swift └── TestClient │ └── main.swift ├── Tests ├── CodableWrapperMacrosTests │ ├── CodingKeyMacroErrorTests.swift │ ├── CodingKeyMacroTests.swift │ ├── CodingKeyPredicate.swift │ ├── CodingKeyPrefixSuffixTests.swift │ ├── Helpers.swift │ ├── KeyConverterTests.swift │ └── TestMacros.swift ├── CodableWrappersTests │ ├── CompositionTests.swift │ ├── Decoder │ │ ├── BoolDecodingTests.swift │ │ ├── CustomFloatingPointDecoderTests.swift │ │ ├── DataDecodingTests.swift │ │ ├── DateDecodingTests.swift │ │ ├── DecodingTestSpec.swift │ │ ├── EmptyDefaultsDecodingTests.swift │ │ ├── LossyCollectionDecodingTests.swift │ │ └── OptionalDecodingTests.swift │ ├── Encoder │ │ ├── BoolEncodingTests.swift │ │ ├── CustomFloatingPointEncoderTests.swift │ │ ├── DataEncodingTests.swift │ │ ├── DateEncodingTests.swift │ │ ├── EmptyDefaultsEncodingTests.swift │ │ ├── EncodingTestSpec.swift │ │ ├── NullEncodingTests.swift │ │ └── OptionalEncodingTests.swift │ ├── EqualLinesPredicate.swift │ ├── Other │ │ └── OtherTests.swift │ ├── PartialImplementationTests.swift │ └── XCTestManifests.swift ├── IntegrationTests │ └── IntegrationTests.swift └── LinuxMain.swift └── codecov.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/code-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.github/workflows/code-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/experimental-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.github/workflows/experimental-tests.yml -------------------------------------------------------------------------------- /.github/workflows/ios-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.github/workflows/ios-tests.yml -------------------------------------------------------------------------------- /.github/workflows/multiplatform-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.github/workflows/multiplatform-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CodableWrappers.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/CodableWrappers.podspec -------------------------------------------------------------------------------- /CodingKeyMacrosDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/CodingKeyMacrosDocumentation.md -------------------------------------------------------------------------------- /CustomExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/CustomExamples.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Package.swift -------------------------------------------------------------------------------- /PropertyWrappersDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/PropertyWrappersDocumentation.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /Sources/CodableMacros/CodableMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableMacros/CodableMacros.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/CodableWrapperMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/CodableWrapperMacros.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/CodingKeys/CodingKeyMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/CodingKeys/CodingKeyMacros.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/CodingKeys/CodingKeyTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/CodingKeys/CodingKeyTypes.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/CodingKeys/CodingKeysGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/CodingKeys/CodingKeysGenerator.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/Convenience/ConvenienceExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/Convenience/ConvenienceExtensions.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/Convenience/DebuggingHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/Convenience/DebuggingHelpers.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/Convenience/DiagnosticConvenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/Convenience/DiagnosticConvenience.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/ErrorHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/ErrorHandling.swift -------------------------------------------------------------------------------- /Sources/CodableWrapperMacros/TypeMacroContainers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrapperMacros/TypeMacroContainers.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableMacros/CodableMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableMacros/CodableMacros.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/BoolCustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/BoolCustomization.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/BuildingBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/BuildingBlocks.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/CodableWrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/CodableWrappers.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/CustomCodingKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/CustomCodingKeys.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/DataCustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/DataCustomization.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/DateCustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/DateCustomization.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/Fallbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/Fallbacks.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/LossyCollections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/LossyCollections.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/NullHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/NullHandling.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/NumberCustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/NumberCustomization.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/CodableWrappers.docc/SerializationCustomization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/CodableWrappers.docc/SerializationCustomization.md -------------------------------------------------------------------------------- /Sources/CodableWrappers/Convenience/ConveienceAdherence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Convenience/ConveienceAdherence.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Convenience/CustomWrappers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Convenience/CustomWrappers.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Convenience/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Convenience/Deprecations.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Convenience/EmptyDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Convenience/EmptyDefaults.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Core/FallbackCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Core/FallbackCoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Core/ImmutableWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Core/ImmutableWrapper.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Core/OmitCodingWrappers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Core/OmitCodingWrappers.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Core/OptionalWrappers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Core/OptionalWrappers.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Core/StaticCodingWrappers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Core/StaticCodingWrappers.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/Core/TransientCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/Core/TransientCoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/BoolCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/BoolCoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/DataCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/DataCoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/DateCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/DateCoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/FloatingPointCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/FloatingPointCoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/NilFiltering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/NilFiltering.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/NullEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/NullEncoding.swift -------------------------------------------------------------------------------- /Sources/CodableWrappers/StaticCoders/StaticCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/CodableWrappers/StaticCoders/StaticCoding.swift -------------------------------------------------------------------------------- /Sources/TestClient/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Sources/TestClient/main.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/CodingKeyMacroErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/CodingKeyMacroErrorTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/CodingKeyMacroTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/CodingKeyMacroTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/CodingKeyPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/CodingKeyPredicate.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/CodingKeyPrefixSuffixTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/CodingKeyPrefixSuffixTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/Helpers.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/KeyConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/KeyConverterTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrapperMacrosTests/TestMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrapperMacrosTests/TestMacros.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/CompositionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/CompositionTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/BoolDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/BoolDecodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/CustomFloatingPointDecoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/CustomFloatingPointDecoderTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/DataDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/DataDecodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/DateDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/DateDecodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/DecodingTestSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/DecodingTestSpec.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/EmptyDefaultsDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/EmptyDefaultsDecodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/LossyCollectionDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/LossyCollectionDecodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Decoder/OptionalDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Decoder/OptionalDecodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/BoolEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/BoolEncodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/CustomFloatingPointEncoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/CustomFloatingPointEncoderTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/DataEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/DataEncodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/DateEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/DateEncodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/EmptyDefaultsEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/EmptyDefaultsEncodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/EncodingTestSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/EncodingTestSpec.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/NullEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/NullEncodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Encoder/OptionalEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Encoder/OptionalEncodingTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/EqualLinesPredicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/EqualLinesPredicate.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/Other/OtherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/Other/OtherTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/PartialImplementationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/PartialImplementationTests.swift -------------------------------------------------------------------------------- /Tests/CodableWrappersTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/CodableWrappersTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/IntegrationTests/IntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/IntegrationTests/IntegrationTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaGetSwifty/CodableWrappers/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | token: d090b2ac-bdc5-4ee3-b29c-c0c7effc318f 3 | --------------------------------------------------------------------------------