diff --git a/Sources/Communications/Classes/MockURLProtocol.swift b/Sources/Communications/Classes/MockURLProtocol.swift index e8a0fd3..1a92bf6 100644 --- a/Sources/Communications/Classes/MockURLProtocol.swift +++ b/Sources/Communications/Classes/MockURLProtocol.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// MockURLProtocol.swift -// APICore +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 10/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Foundation diff --git a/Sources/Communications/Enumerations/HTTPRequestMethod.swift b/Sources/Communications/Enumerations/HTTPRequestMethod.swift index 8ab7a41..67e885d 100644 --- a/Sources/Communications/Enumerations/HTTPRequestMethod.swift +++ b/Sources/Communications/Enumerations/HTTPRequestMethod.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// HTTPRequestMethod.swift -// Communications +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 10/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// /// Enumeration that represents the available HTTP request methods to use in this library. public enum HTTPRequestMethod: String { diff --git a/Sources/Communications/Enumerations/HTTPResponseCode.swift b/Sources/Communications/Enumerations/HTTPResponseCode.swift index 407f6ec..c51a56c 100644 --- a/Sources/Communications/Enumerations/HTTPResponseCode.swift +++ b/Sources/Communications/Enumerations/HTTPResponseCode.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// HTTPResponseCode.swift -// Communications +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 16/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// public enum HTTPResponseCode: Int { diff --git a/Sources/Communications/Protocols/Client.swift b/Sources/Communications/Protocols/Client.swift index 4d1caa5..3c1f556 100644 --- a/Sources/Communications/Protocols/Client.swift +++ b/Sources/Communications/Protocols/Client.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Client.swift -// Communications +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 10/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Foundation diff --git a/Sources/Communications/Protocols/Endpoint.swift b/Sources/Communications/Protocols/Endpoint.swift index 5232052..79b79fd 100644 --- a/Sources/Communications/Protocols/Endpoint.swift +++ b/Sources/Communications/Protocols/Endpoint.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Endpoint.swift -// Communications +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 10/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Foundation diff --git a/Sources/Communications/Use Cases/MakeURLRequestUseCase.swift b/Sources/Communications/Use Cases/MakeURLRequestUseCase.swift index fce9754..e81e639 100644 --- a/Sources/Communications/Use Cases/MakeURLRequestUseCase.swift +++ b/Sources/Communications/Use Cases/MakeURLRequestUseCase.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// MakeURLRequestUseCase.swift -// APICore +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 10/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Foundation diff --git a/Sources/Coordination/Platform/iOS/Routers/BaseNavigationRouter.swift b/Sources/Coordination/Platform/iOS/Routers/BaseNavigationRouter.swift index 38bd76b..dd437d1 100644 --- a/Sources/Coordination/Platform/iOS/Routers/BaseNavigationRouter.swift +++ b/Sources/Coordination/Platform/iOS/Routers/BaseNavigationRouter.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// BaseNavigationRouter.swift -// Coordination +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import UIKit diff --git a/Sources/Coordination/Platform/iOS/Routers/ModalNavigationRouter.swift b/Sources/Coordination/Platform/iOS/Routers/ModalNavigationRouter.swift index cf7cc1b..4f52159 100644 --- a/Sources/Coordination/Platform/iOS/Routers/ModalNavigationRouter.swift +++ b/Sources/Coordination/Platform/iOS/Routers/ModalNavigationRouter.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// ModalNavigationRouter.swift -// Coordination +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import UIKit diff --git a/Sources/Coordination/Platform/iOS/Routers/PushNavigationRouter.swift b/Sources/Coordination/Platform/iOS/Routers/PushNavigationRouter.swift index 3873115..d4e999c 100644 --- a/Sources/Coordination/Platform/iOS/Routers/PushNavigationRouter.swift +++ b/Sources/Coordination/Platform/iOS/Routers/PushNavigationRouter.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// PushNavigationRouter.swift -// Coordination +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import UIKit diff --git a/Sources/Coordination/Platform/iOS/Routers/WindowRouter.swift b/Sources/Coordination/Platform/iOS/Routers/WindowRouter.swift index a59a402..f9d7431 100644 --- a/Sources/Coordination/Platform/iOS/Routers/WindowRouter.swift +++ b/Sources/Coordination/Platform/iOS/Routers/WindowRouter.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// WindowRouter.swift -// Coordination +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import UIKit diff --git a/Sources/Coordination/Protocols/Coordinator.swift b/Sources/Coordination/Protocols/Coordinator.swift index ae4a687..2f7035b 100644 --- a/Sources/Coordination/Protocols/Coordinator.swift +++ b/Sources/Coordination/Protocols/Coordinator.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Coordinator.swift -// Coordination +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// /// This protocol organize the flow logic between view controllers in the app. public protocol Coordinator: AnyObject { diff --git a/Sources/Coordination/Protocols/Router.swift b/Sources/Coordination/Protocols/Router.swift index cdbc960..121bdfa 100644 --- a/Sources/Coordination/Protocols/Router.swift +++ b/Sources/Coordination/Protocols/Router.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Router.swift -// Coordination +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// #if canImport(UIKit) import UIKit diff --git a/Sources/Core/Extensions/Bool+Init.swift b/Sources/Core/Extensions/Bool+Init.swift index f006647..8ffd763 100644 --- a/Sources/Core/Extensions/Bool+Init.swift +++ b/Sources/Core/Extensions/Bool+Init.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Bool+Init.swift -// Core +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 15/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// public extension Bool { diff --git a/Sources/Core/Extensions/String+Empty.swift b/Sources/Core/Extensions/String+Empty.swift index 186ae1e..b3a599a 100644 --- a/Sources/Core/Extensions/String+Empty.swift +++ b/Sources/Core/Extensions/String+Empty.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// String+Empty.swift -// Core +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 15/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// public extension String { diff --git a/Sources/Dependencies/Property Wrappers/Dependency.swift b/Sources/Dependencies/Property Wrappers/Dependency.swift index ebe96fe..726fe0e 100644 --- a/Sources/Dependencies/Property Wrappers/Dependency.swift +++ b/Sources/Dependencies/Property Wrappers/Dependency.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Dependency.swift -// Dependencies +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// /// This property wrapper provides a direct connection to the `DependencyService` service. @propertyWrapper diff --git a/Sources/Dependencies/Protocols/DependencyKey.swift b/Sources/Dependencies/Protocols/DependencyKey.swift index 8afd500..38ab8eb 100644 --- a/Sources/Dependencies/Protocols/DependencyKey.swift +++ b/Sources/Dependencies/Protocols/DependencyKey.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// DependencyKey.swift -// Dependencies +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// /// This protocol defines a key to use in the dependency service. public protocol DependencyKey { diff --git a/Sources/Dependencies/Services/DependencyService.swift b/Sources/Dependencies/Services/DependencyService.swift index 3915ce8..3813447 100644 --- a/Sources/Dependencies/Services/DependencyService.swift +++ b/Sources/Dependencies/Services/DependencyService.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// DependencyService.swift -// Dependencies +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// /// This service provide write/read access to the injected dependencies. public struct DependencyService { diff --git a/Sources/Persistence/Classes/Fetcher.swift b/Sources/Persistence/Classes/Fetcher.swift index 60bda74..c69e715 100644 --- a/Sources/Persistence/Classes/Fetcher.swift +++ b/Sources/Persistence/Classes/Fetcher.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Fetcher.swift -// Persistence +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 16/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Combine import CoreData diff --git a/Sources/Persistence/Extensions/URL+Devices.swift b/Sources/Persistence/Extensions/URL+Devices.swift index 9297c23..5c0cc87 100644 --- a/Sources/Persistence/Extensions/URL+Devices.swift +++ b/Sources/Persistence/Extensions/URL+Devices.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// URL+Devices.swift -// Persistence +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 17/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Foundation diff --git a/Sources/Persistence/Protocols/Service.swift b/Sources/Persistence/Protocols/Service.swift index e628743..358ebe1 100644 --- a/Sources/Persistence/Protocols/Service.swift +++ b/Sources/Persistence/Protocols/Service.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Service.swift -// Persistence +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 13/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import CoreData diff --git a/Tests/Communications/Use Cases/MakeURLRequestUseCaseTests.swift b/Tests/Communications/Use Cases/MakeURLRequestUseCaseTests.swift index 443dc4f..6f8cf7c 100644 --- a/Tests/Communications/Use Cases/MakeURLRequestUseCaseTests.swift +++ b/Tests/Communications/Use Cases/MakeURLRequestUseCaseTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// MakeURLRequestUseCaseTests.swift -// CommunicationsTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 10/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Communications import Foundation diff --git a/Tests/Coordination/Platform/iOS/Helpers/TestCoordinators.swift b/Tests/Coordination/Platform/iOS/Helpers/TestCoordinators.swift index c68fef0..0379685 100644 --- a/Tests/Coordination/Platform/iOS/Helpers/TestCoordinators.swift +++ b/Tests/Coordination/Platform/iOS/Helpers/TestCoordinators.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// TestCoordinators.swift -// CoordinationTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Coordination import UIKit diff --git a/Tests/Coordination/Platform/iOS/Protocols/CoordinatorTests.swift b/Tests/Coordination/Platform/iOS/Protocols/CoordinatorTests.swift index 1e7260b..4a61d28 100644 --- a/Tests/Coordination/Platform/iOS/Protocols/CoordinatorTests.swift +++ b/Tests/Coordination/Platform/iOS/Protocols/CoordinatorTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// CoordinatorTests.swift -// CoordinationTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Coordination import UIKit diff --git a/Tests/Core/Extensions/Bool+InitTests.swift b/Tests/Core/Extensions/Bool+InitTests.swift index 390e057..e56dd5d 100644 --- a/Tests/Core/Extensions/Bool+InitTests.swift +++ b/Tests/Core/Extensions/Bool+InitTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// Bool+InitTests.swift -// Core +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 15/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Core import XCTest diff --git a/Tests/Core/Extensions/String+EmptyTests.swift b/Tests/Core/Extensions/String+EmptyTests.swift index 8639c44..956abf0 100644 --- a/Tests/Core/Extensions/String+EmptyTests.swift +++ b/Tests/Core/Extensions/String+EmptyTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// String+EmptyTests.swift -// Core +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 15/04/2023. -// Copyright © 2022 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Core import XCTest diff --git a/Tests/Dependencies/Helpers/TestServices.swift b/Tests/Dependencies/Helpers/TestServices.swift index c5d28ad..eff295c 100644 --- a/Tests/Dependencies/Helpers/TestServices.swift +++ b/Tests/Dependencies/Helpers/TestServices.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// TestServices.swift -// DependenciesTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Dependencies diff --git a/Tests/Dependencies/Property Wrappers/DependencyTests.swift b/Tests/Dependencies/Property Wrappers/DependencyTests.swift index ce0e8fb..a8f881b 100644 --- a/Tests/Dependencies/Property Wrappers/DependencyTests.swift +++ b/Tests/Dependencies/Property Wrappers/DependencyTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// DependencyTests.swift -// DependenciesTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Dependencies import XCTest diff --git a/Tests/Dependencies/Services/DependencyServiceTests.swift b/Tests/Dependencies/Services/DependencyServiceTests.swift index 48bb5bc..6e74544 100644 --- a/Tests/Dependencies/Services/DependencyServiceTests.swift +++ b/Tests/Dependencies/Services/DependencyServiceTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// DependencyServiceTests.swift -// DependenciesTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 11/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Dependencies import XCTest diff --git a/Tests/Persistence/Classes/FetcherTests.swift b/Tests/Persistence/Classes/FetcherTests.swift index facead0..40787fa 100644 --- a/Tests/Persistence/Classes/FetcherTests.swift +++ b/Tests/Persistence/Classes/FetcherTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// FetcherTests.swift -// PersistenceTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 17/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Combine import Persistence diff --git a/Tests/Persistence/Extensions/URL+DevicesTests.swift b/Tests/Persistence/Extensions/URL+DevicesTests.swift index a4f0ae5..1f2377c 100644 --- a/Tests/Persistence/Extensions/URL+DevicesTests.swift +++ b/Tests/Persistence/Extensions/URL+DevicesTests.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// URL+DevicesTests.swift -// PersistenceTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 17/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import Foundation import Persistence diff --git a/Tests/Persistence/Helpers/NSFetchRequest+TestEntity.swift b/Tests/Persistence/Helpers/NSFetchRequest+TestEntity.swift index bfa2468..1022f55 100644 --- a/Tests/Persistence/Helpers/NSFetchRequest+TestEntity.swift +++ b/Tests/Persistence/Helpers/NSFetchRequest+TestEntity.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// NSFetchRequest+TestEntity.swift -// PersistenceTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 17/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import CoreData diff --git a/Tests/Persistence/Helpers/TestPersistenceService.swift b/Tests/Persistence/Helpers/TestPersistenceService.swift index ee33433..2ebb19d 100644 --- a/Tests/Persistence/Helpers/TestPersistenceService.swift +++ b/Tests/Persistence/Helpers/TestPersistenceService.swift @@ -1,10 +1,14 @@ +//===----------------------------------------------------------------------===// // -// TestPersistenceService.swift -// PersistenceTests +// This source file is part of the SwiftLibs open source project // -// Created by Javier Cicchelli on 17/04/2023. -// Copyright © 2023 Röck+Cöde. All rights reserved. +// Copyright (c) 2023 Röck+Cöde VoF. and the SwiftLibs project authors +// Licensed under the EUPL 1.2 or later. // +// See LICENSE.txt for license information +// See CONTRIBUTORS.txt for the list of SwiftLibs project authors +// +//===----------------------------------------------------------------------===// import CoreData import Persistence