From a302304c8a1cd596bdfb91afe757d4f4052ad2f6 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 31 Mar 2024 18:03:57 +0200 Subject: [PATCH] Adding a license to tests is probably a good idea --- tests/test_resources/custom_module.gd | 16 ++++++++++++++++ tests/test_resources/scene.gd | 16 ++++++++++++++++ tests/unit/core.gd | 16 ++++++++++++++++ tests/unit/misc.gd | 16 ++++++++++++++++ tests/unit/sms.gd | 16 ++++++++++++++++ tests/unitbase.gd | 16 ++++++++++++++++ 6 files changed, 96 insertions(+) diff --git a/tests/test_resources/custom_module.gd b/tests/test_resources/custom_module.gd index c212552..79a5e60 100644 --- a/tests/test_resources/custom_module.gd +++ b/tests/test_resources/custom_module.gd @@ -1,3 +1,19 @@ +# CORE FRAMEWORK TEST FILE +# Copyright (c) 2024 The StarOpenSource Project & Contributors +# Licensed under the GNU Affero General Public License v3 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . extends CoreBaseModule @onready var suite: BessereTestsTest = get_node_or_null("/root/suite_core") diff --git a/tests/test_resources/scene.gd b/tests/test_resources/scene.gd index 867922e..72b43dd 100644 --- a/tests/test_resources/scene.gd +++ b/tests/test_resources/scene.gd @@ -1,3 +1,19 @@ +# CORE FRAMEWORK TEST FILE +# Copyright (c) 2024 The StarOpenSource Project & Contributors +# Licensed under the GNU Affero General Public License v3 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . extends Control @onready var suite: BessereTestsTest = get_node_or_null("/root/suite_sms") diff --git a/tests/unit/core.gd b/tests/unit/core.gd index 9849e7b..5034b7c 100644 --- a/tests/unit/core.gd +++ b/tests/unit/core.gd @@ -1,3 +1,19 @@ +# CORE FRAMEWORK TEST FILE +# Copyright (c) 2024 The StarOpenSource Project & Contributors +# Licensed under the GNU Affero General Public License v3 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . extends 'res://tests/unitbase.gd' # Initialization test diff --git a/tests/unit/misc.gd b/tests/unit/misc.gd index 7cf8ee1..0a93382 100644 --- a/tests/unit/misc.gd +++ b/tests/unit/misc.gd @@ -1,3 +1,19 @@ +# CORE FRAMEWORK TEST FILE +# Copyright (c) 2024 The StarOpenSource Project & Contributors +# Licensed under the GNU Affero General Public License v3 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . extends 'res://tests/unitbase.gd' # byte2mib diff --git a/tests/unit/sms.gd b/tests/unit/sms.gd index 069184e..efcf674 100644 --- a/tests/unit/sms.gd +++ b/tests/unit/sms.gd @@ -1,3 +1,19 @@ +# CORE FRAMEWORK TEST FILE +# Copyright (c) 2024 The StarOpenSource Project & Contributors +# Licensed under the GNU Affero General Public License v3 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . extends 'res://tests/unitbase.gd' var test_scene: Node = load("res://tests/test_resources/scene.tscn").instantiate() diff --git a/tests/unitbase.gd b/tests/unitbase.gd index 8287913..9d91fda 100644 --- a/tests/unitbase.gd +++ b/tests/unitbase.gd @@ -1,3 +1,19 @@ +# CORE FRAMEWORK TEST FILE +# Copyright (c) 2024 The StarOpenSource Project & Contributors +# Licensed under the GNU Affero General Public License v3 +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . extends BessereTestsTest # CORE