From b70ebc30c4204f17e6217f2fed257609c4f139d9 Mon Sep 17 00:00:00 2001 From: Valeriy Savchenko Date: Thu, 28 Dec 2023 15:58:32 +0000 Subject: [PATCH] Add header license comments to all tests --- test/Unit/CallTests.swift | 19 +++++++++++++++++++ test/Unit/ChannelTests.swift | 19 +++++++++++++++++++ test/Unit/ConversionTests.swift | 19 +++++++++++++++++++ test/Unit/DefunTests.swift | 19 +++++++++++++++++++ test/Unit/ErrorTests.swift | 19 +++++++++++++++++++ test/Unit/LeaksTests.swift | 19 +++++++++++++++++++ test/Unit/LispTypesTests.swift | 19 +++++++++++++++++++ 7 files changed, 133 insertions(+) diff --git a/test/Unit/CallTests.swift b/test/Unit/CallTests.swift index 2fb5fb76..9c7183f5 100644 --- a/test/Unit/CallTests.swift +++ b/test/Unit/CallTests.swift @@ -1,3 +1,22 @@ +// +// CallTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// @testable import EmacsSwiftModule import XCTest diff --git a/test/Unit/ChannelTests.swift b/test/Unit/ChannelTests.swift index f1ec4455..ba1691b3 100644 --- a/test/Unit/ChannelTests.swift +++ b/test/Unit/ChannelTests.swift @@ -1,3 +1,22 @@ +// +// ChannelTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// @testable import EmacsSwiftModule import XCTest diff --git a/test/Unit/ConversionTests.swift b/test/Unit/ConversionTests.swift index 865a467b..f3f1f20c 100644 --- a/test/Unit/ConversionTests.swift +++ b/test/Unit/ConversionTests.swift @@ -1,3 +1,22 @@ +// +// ConversionTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// @testable import EmacsSwiftModule import XCTest diff --git a/test/Unit/DefunTests.swift b/test/Unit/DefunTests.swift index d1a4ed73..425132c4 100644 --- a/test/Unit/DefunTests.swift +++ b/test/Unit/DefunTests.swift @@ -1,3 +1,22 @@ +// +// DefunTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// @testable import EmacsSwiftModule import XCTest diff --git a/test/Unit/ErrorTests.swift b/test/Unit/ErrorTests.swift index a3f59490..770b84b9 100644 --- a/test/Unit/ErrorTests.swift +++ b/test/Unit/ErrorTests.swift @@ -1,3 +1,22 @@ +// +// ErrorTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// @testable import EmacsSwiftModule import XCTest diff --git a/test/Unit/LeaksTests.swift b/test/Unit/LeaksTests.swift index 85729316..46cd2d6f 100644 --- a/test/Unit/LeaksTests.swift +++ b/test/Unit/LeaksTests.swift @@ -1,3 +1,22 @@ +// +// LeaksTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// import XCTest // Only build when built through SPM, as tests run through Xcode don't like this. diff --git a/test/Unit/LispTypesTests.swift b/test/Unit/LispTypesTests.swift index 10c7b95d..5212cd92 100644 --- a/test/Unit/LispTypesTests.swift +++ b/test/Unit/LispTypesTests.swift @@ -1,3 +1,22 @@ +// +// LispTypesTests.swift +// Copyright (C) 2022-2023 Valeriy Savchenko +// +// This file is part of EmacsSwiftModule. +// +// EmacsSwiftModule is free software: you can redistribute it and/or modify it +// under the terms of the GNU General Public License as published by the Free +// Software Foundation, either version 3 of the License, or (at your option) +// any later version. +// +// EmacsSwiftModule is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +// more details. +// +// You should have received a copy of the GNU General Public License along with +// EmacsSwiftModule. If not, see . +// @testable import EmacsSwiftModule import XCTest