From f4c0f8483bb1a183eb80d25fcace94d1d04df34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Coye=20de=20Brune=CC=81lis?= Date: Thu, 23 Nov 2023 17:07:49 +0100 Subject: [PATCH] test: SonarCloud is expected to detect a duplication in the SOURCE folder --- Sources/InfomaniakDI/ToDelete.swift | 58 +++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Sources/InfomaniakDI/ToDelete.swift diff --git a/Sources/InfomaniakDI/ToDelete.swift b/Sources/InfomaniakDI/ToDelete.swift new file mode 100644 index 0000000..8b7d007 --- /dev/null +++ b/Sources/InfomaniakDI/ToDelete.swift @@ -0,0 +1,58 @@ +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +import Foundation + +public class SomeDuplication { + + public init() { + + } + + public var a: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaaa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaaaa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaaaaa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaaaaaa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaaaaaaa: String { + "the quick brown fox jumps over the lazy dog." + } + + public var aaaaaaaaa: String { + "the quick brown fox jumps over the lazy dog." + } + +} \ No newline at end of file