diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b5f7be8a..2a3a2d5b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)") @@ -47,7 +47,7 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") add_compile_options(-Wnoexcept) endif() - if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.7 AND + if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.7 AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8) # avoid false positive with GCC 4.7 add_compile_options(-Wno-maybe-uninitialized) diff --git a/test/DynamicJsonBuffer/CMakeLists.txt b/test/DynamicJsonBuffer/CMakeLists.txt index 9eba1a53..3bd2d4e9 100644 --- a/test/DynamicJsonBuffer/CMakeLists.txt +++ b/test/DynamicJsonBuffer/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(DynamicJsonBufferTests +add_executable(DynamicJsonBufferTests alloc.cpp createArray.cpp createObject.cpp diff --git a/test/DynamicJsonBuffer/alloc.cpp b/test/DynamicJsonBuffer/alloc.cpp index 8a92e930..ec5c8775 100644 --- a/test/DynamicJsonBuffer/alloc.cpp +++ b/test/DynamicJsonBuffer/alloc.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/DynamicJsonBuffer/createArray.cpp b/test/DynamicJsonBuffer/createArray.cpp index bfb92813..fcc8d6f0 100644 --- a/test/DynamicJsonBuffer/createArray.cpp +++ b/test/DynamicJsonBuffer/createArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/DynamicJsonBuffer/createObject.cpp b/test/DynamicJsonBuffer/createObject.cpp index 0f6e5c0c..c92d1003 100644 --- a/test/DynamicJsonBuffer/createObject.cpp +++ b/test/DynamicJsonBuffer/createObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/DynamicJsonBuffer/no_memory.cpp b/test/DynamicJsonBuffer/no_memory.cpp index 4bf7a6ab..e1c02b8b 100644 --- a/test/DynamicJsonBuffer/no_memory.cpp +++ b/test/DynamicJsonBuffer/no_memory.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/DynamicJsonBuffer/size.cpp b/test/DynamicJsonBuffer/size.cpp index bce40bd0..092e8096 100644 --- a/test/DynamicJsonBuffer/size.cpp +++ b/test/DynamicJsonBuffer/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/DynamicJsonBuffer/startString.cpp b/test/DynamicJsonBuffer/startString.cpp index 6faa75d1..6a8450ba 100644 --- a/test/DynamicJsonBuffer/startString.cpp +++ b/test/DynamicJsonBuffer/startString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/IntegrationTests/CMakeLists.txt b/test/IntegrationTests/CMakeLists.txt index 897b5a6a..6f2c8053 100644 --- a/test/IntegrationTests/CMakeLists.txt +++ b/test/IntegrationTests/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(IntegrationTests +add_executable(IntegrationTests gbathree.cpp round_trip.cpp ) diff --git a/test/IntegrationTests/gbathree.cpp b/test/IntegrationTests/gbathree.cpp index 481c4441..ac5ce372 100644 --- a/test/IntegrationTests/gbathree.cpp +++ b/test/IntegrationTests/gbathree.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/IntegrationTests/round_trip.cpp b/test/IntegrationTests/round_trip.cpp index e0481f77..7bde84eb 100644 --- a/test/IntegrationTests/round_trip.cpp +++ b/test/IntegrationTests/round_trip.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/CMakeLists.txt b/test/JsonArray/CMakeLists.txt index dbd08c80..10086873 100644 --- a/test/JsonArray/CMakeLists.txt +++ b/test/JsonArray/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(JsonArrayTests +add_executable(JsonArrayTests add.cpp basics.cpp copyFrom.cpp diff --git a/test/JsonArray/add.cpp b/test/JsonArray/add.cpp index 5c0ef7d1..3f127a47 100644 --- a/test/JsonArray/add.cpp +++ b/test/JsonArray/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/basics.cpp b/test/JsonArray/basics.cpp index 33ad6308..d6bf1aca 100644 --- a/test/JsonArray/basics.cpp +++ b/test/JsonArray/basics.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/copyFrom.cpp b/test/JsonArray/copyFrom.cpp index 191f27f0..16c052b4 100644 --- a/test/JsonArray/copyFrom.cpp +++ b/test/JsonArray/copyFrom.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/copyTo.cpp b/test/JsonArray/copyTo.cpp index 6fa48ffb..32349db9 100644 --- a/test/JsonArray/copyTo.cpp +++ b/test/JsonArray/copyTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/invalid.cpp b/test/JsonArray/invalid.cpp index b4fff032..b1f1e347 100644 --- a/test/JsonArray/invalid.cpp +++ b/test/JsonArray/invalid.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/iterator.cpp b/test/JsonArray/iterator.cpp index bf070f73..bdc576bf 100644 --- a/test/JsonArray/iterator.cpp +++ b/test/JsonArray/iterator.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/prettyPrintTo.cpp b/test/JsonArray/prettyPrintTo.cpp index 403bf4f6..2574f42e 100644 --- a/test/JsonArray/prettyPrintTo.cpp +++ b/test/JsonArray/prettyPrintTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/printTo.cpp b/test/JsonArray/printTo.cpp index 6c60da58..85672d75 100644 --- a/test/JsonArray/printTo.cpp +++ b/test/JsonArray/printTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/remove.cpp b/test/JsonArray/remove.cpp index 5aaf23c9..6a018ef4 100644 --- a/test/JsonArray/remove.cpp +++ b/test/JsonArray/remove.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/set.cpp b/test/JsonArray/set.cpp index 6d876c89..a4a4ec09 100644 --- a/test/JsonArray/set.cpp +++ b/test/JsonArray/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/size.cpp b/test/JsonArray/size.cpp index 7bee2832..389d99b2 100644 --- a/test/JsonArray/size.cpp +++ b/test/JsonArray/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonArray/subscript.cpp b/test/JsonArray/subscript.cpp index 14c26f85..b866a6ca 100644 --- a/test/JsonArray/subscript.cpp +++ b/test/JsonArray/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonBuffer/CMakeLists.txt b/test/JsonBuffer/CMakeLists.txt index 57f9fd44..891f51c4 100644 --- a/test/JsonBuffer/CMakeLists.txt +++ b/test/JsonBuffer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License add_executable(JsonBufferTests diff --git a/test/JsonBuffer/nested.cpp b/test/JsonBuffer/nested.cpp index 70c496e6..01a29c35 100644 --- a/test/JsonBuffer/nested.cpp +++ b/test/JsonBuffer/nested.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonBuffer/nestingLimit.cpp b/test/JsonBuffer/nestingLimit.cpp index d73b58cd..b5cfecc9 100644 --- a/test/JsonBuffer/nestingLimit.cpp +++ b/test/JsonBuffer/nestingLimit.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonBuffer/parse.cpp b/test/JsonBuffer/parse.cpp index 0b1abb0b..6a649e6f 100644 --- a/test/JsonBuffer/parse.cpp +++ b/test/JsonBuffer/parse.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonBuffer/parseArray.cpp b/test/JsonBuffer/parseArray.cpp index e54b2aed..6a406b69 100644 --- a/test/JsonBuffer/parseArray.cpp +++ b/test/JsonBuffer/parseArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonBuffer/parseObject.cpp b/test/JsonBuffer/parseObject.cpp index 001eb210..4d48bc5d 100644 --- a/test/JsonBuffer/parseObject.cpp +++ b/test/JsonBuffer/parseObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/CMakeLists.txt b/test/JsonObject/CMakeLists.txt index e48fab38..7a318ff1 100644 --- a/test/JsonObject/CMakeLists.txt +++ b/test/JsonObject/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License add_executable(JsonObjectTests diff --git a/test/JsonObject/basics.cpp b/test/JsonObject/basics.cpp index 8825eb92..29c2916a 100644 --- a/test/JsonObject/basics.cpp +++ b/test/JsonObject/basics.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/containsKey.cpp b/test/JsonObject/containsKey.cpp index 9524ffca..4eba7cee 100644 --- a/test/JsonObject/containsKey.cpp +++ b/test/JsonObject/containsKey.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/get.cpp b/test/JsonObject/get.cpp index 7c4c0e6d..33c85752 100644 --- a/test/JsonObject/get.cpp +++ b/test/JsonObject/get.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/invalid.cpp b/test/JsonObject/invalid.cpp index 10d928ff..8568abe5 100644 --- a/test/JsonObject/invalid.cpp +++ b/test/JsonObject/invalid.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/iterator.cpp b/test/JsonObject/iterator.cpp index 3e2559d4..46e3afb5 100644 --- a/test/JsonObject/iterator.cpp +++ b/test/JsonObject/iterator.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/prettyPrintTo.cpp b/test/JsonObject/prettyPrintTo.cpp index b775395f..20a1af10 100644 --- a/test/JsonObject/prettyPrintTo.cpp +++ b/test/JsonObject/prettyPrintTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/printTo.cpp b/test/JsonObject/printTo.cpp index 3d73ae77..87d8d528 100644 --- a/test/JsonObject/printTo.cpp +++ b/test/JsonObject/printTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/remove.cpp b/test/JsonObject/remove.cpp index 0137cb41..d01dcf26 100644 --- a/test/JsonObject/remove.cpp +++ b/test/JsonObject/remove.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/set.cpp b/test/JsonObject/set.cpp index 709bee22..dc3ab026 100644 --- a/test/JsonObject/set.cpp +++ b/test/JsonObject/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/size.cpp b/test/JsonObject/size.cpp index 810cc1e1..82ac57f8 100644 --- a/test/JsonObject/size.cpp +++ b/test/JsonObject/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonObject/subscript.cpp b/test/JsonObject/subscript.cpp index f897f30b..a19810a0 100644 --- a/test/JsonObject/subscript.cpp +++ b/test/JsonObject/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/CMakeLists.txt b/test/JsonVariant/CMakeLists.txt index 9a2c2394..312b507a 100644 --- a/test/JsonVariant/CMakeLists.txt +++ b/test/JsonVariant/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(JsonVariantTests +add_executable(JsonVariantTests as.cpp compare.cpp copy.cpp diff --git a/test/JsonVariant/as.cpp b/test/JsonVariant/as.cpp index 81901eb0..192ef6c0 100644 --- a/test/JsonVariant/as.cpp +++ b/test/JsonVariant/as.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/compare.cpp b/test/JsonVariant/compare.cpp index 14538e50..eb330f58 100644 --- a/test/JsonVariant/compare.cpp +++ b/test/JsonVariant/compare.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/copy.cpp b/test/JsonVariant/copy.cpp index 541bb24c..61ccce9d 100644 --- a/test/JsonVariant/copy.cpp +++ b/test/JsonVariant/copy.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/is.cpp b/test/JsonVariant/is.cpp index 9ead2a70..f81f7777 100644 --- a/test/JsonVariant/is.cpp +++ b/test/JsonVariant/is.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/or.cpp b/test/JsonVariant/or.cpp index f4e190c5..97d18a47 100644 --- a/test/JsonVariant/or.cpp +++ b/test/JsonVariant/or.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/printTo.cpp b/test/JsonVariant/printTo.cpp index a3870061..0e8ca654 100644 --- a/test/JsonVariant/printTo.cpp +++ b/test/JsonVariant/printTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/set_get.cpp b/test/JsonVariant/set_get.cpp index 08592377..712bc931 100644 --- a/test/JsonVariant/set_get.cpp +++ b/test/JsonVariant/set_get.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/subscript.cpp b/test/JsonVariant/subscript.cpp index 909070dc..1daff6a2 100644 --- a/test/JsonVariant/subscript.cpp +++ b/test/JsonVariant/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/success.cpp b/test/JsonVariant/success.cpp index 84b06eeb..f7fba408 100644 --- a/test/JsonVariant/success.cpp +++ b/test/JsonVariant/success.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonVariant/undefined.cpp b/test/JsonVariant/undefined.cpp index 33695377..a157a838 100644 --- a/test/JsonVariant/undefined.cpp +++ b/test/JsonVariant/undefined.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonWriter/CMakeLists.txt b/test/JsonWriter/CMakeLists.txt index a2670b0f..3012e76b 100644 --- a/test/JsonWriter/CMakeLists.txt +++ b/test/JsonWriter/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(JsonWriterTests +add_executable(JsonWriterTests writeFloat.cpp writeString.cpp ) diff --git a/test/JsonWriter/writeFloat.cpp b/test/JsonWriter/writeFloat.cpp index 6385fea1..0ddb99ee 100644 --- a/test/JsonWriter/writeFloat.cpp +++ b/test/JsonWriter/writeFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/JsonWriter/writeString.cpp b/test/JsonWriter/writeString.cpp index 388c7d06..75874c25 100644 --- a/test/JsonWriter/writeString.cpp +++ b/test/JsonWriter/writeString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/CMakeLists.txt b/test/Misc/CMakeLists.txt index 3324e7ab..7fbc44e0 100644 --- a/test/Misc/CMakeLists.txt +++ b/test/Misc/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(MiscTests +add_executable(MiscTests empty.cpp deprecated.cpp FloatParts.cpp diff --git a/test/Misc/FloatParts.cpp b/test/Misc/FloatParts.cpp index 0aee37ad..e16253d4 100644 --- a/test/Misc/FloatParts.cpp +++ b/test/Misc/FloatParts.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/StringBuilder.cpp b/test/Misc/StringBuilder.cpp index e2b706d6..025e8635 100644 --- a/test/Misc/StringBuilder.cpp +++ b/test/Misc/StringBuilder.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/StringTraits.cpp b/test/Misc/StringTraits.cpp index ed5e870d..d77347e5 100644 --- a/test/Misc/StringTraits.cpp +++ b/test/Misc/StringTraits.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/TypeTraits.cpp b/test/Misc/TypeTraits.cpp index d4380145..a98b7665 100644 --- a/test/Misc/TypeTraits.cpp +++ b/test/Misc/TypeTraits.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/deprecated.cpp b/test/Misc/deprecated.cpp index 333d2b16..8d09bad8 100644 --- a/test/Misc/deprecated.cpp +++ b/test/Misc/deprecated.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #define ARDUINOJSON_ENABLE_DEPRECATED 1 diff --git a/test/Misc/empty.cpp b/test/Misc/empty.cpp index b1436217..f7ebc10b 100644 --- a/test/Misc/empty.cpp +++ b/test/Misc/empty.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License // catch.hpp mutes several warnings, this file allows to detect them diff --git a/test/Misc/std_stream.cpp b/test/Misc/std_stream.cpp index f2f26da6..f9456e03 100644 --- a/test/Misc/std_stream.cpp +++ b/test/Misc/std_stream.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/std_string.cpp b/test/Misc/std_string.cpp index cf645829..532e7e89 100644 --- a/test/Misc/std_string.cpp +++ b/test/Misc/std_string.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/unsigned_char.cpp b/test/Misc/unsigned_char.cpp index 95511944..ef8805a6 100644 --- a/test/Misc/unsigned_char.cpp +++ b/test/Misc/unsigned_char.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/version.cpp b/test/Misc/version.cpp index 72752834..6d509a87 100644 --- a/test/Misc/version.cpp +++ b/test/Misc/version.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Misc/vla.cpp b/test/Misc/vla.cpp index f62bf99a..5b5a47ad 100644 --- a/test/Misc/vla.cpp +++ b/test/Misc/vla.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Polyfills/CMakeLists.txt b/test/Polyfills/CMakeLists.txt index 5e6eb40f..5a6a6042 100644 --- a/test/Polyfills/CMakeLists.txt +++ b/test/Polyfills/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(PolyfillsTests +add_executable(PolyfillsTests isFloat.cpp isInteger.cpp parseFloat.cpp diff --git a/test/Polyfills/isFloat.cpp b/test/Polyfills/isFloat.cpp index e978b5f7..dcaaa540 100644 --- a/test/Polyfills/isFloat.cpp +++ b/test/Polyfills/isFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Polyfills/isInteger.cpp b/test/Polyfills/isInteger.cpp index 4392d897..41294aa3 100644 --- a/test/Polyfills/isInteger.cpp +++ b/test/Polyfills/isInteger.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Polyfills/parseFloat.cpp b/test/Polyfills/parseFloat.cpp index 41dde329..947605cd 100644 --- a/test/Polyfills/parseFloat.cpp +++ b/test/Polyfills/parseFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/Polyfills/parseInteger.cpp b/test/Polyfills/parseInteger.cpp index a47fd5d0..e44f726b 100644 --- a/test/Polyfills/parseInteger.cpp +++ b/test/Polyfills/parseInteger.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/CMakeLists.txt b/test/StaticJsonBuffer/CMakeLists.txt index 3bd58e35..e18f88b2 100644 --- a/test/StaticJsonBuffer/CMakeLists.txt +++ b/test/StaticJsonBuffer/CMakeLists.txt @@ -1,8 +1,8 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2019 +# Copyright Benoit Blanchon 2014-2023 # MIT License -add_executable(StaticJsonBufferTests +add_executable(StaticJsonBufferTests alloc.cpp createArray.cpp createObject.cpp diff --git a/test/StaticJsonBuffer/alloc.cpp b/test/StaticJsonBuffer/alloc.cpp index 3bd6c195..da573991 100644 --- a/test/StaticJsonBuffer/alloc.cpp +++ b/test/StaticJsonBuffer/alloc.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/createArray.cpp b/test/StaticJsonBuffer/createArray.cpp index b81e95f8..7e3a85b6 100644 --- a/test/StaticJsonBuffer/createArray.cpp +++ b/test/StaticJsonBuffer/createArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/createObject.cpp b/test/StaticJsonBuffer/createObject.cpp index 34a750c3..963b3f20 100644 --- a/test/StaticJsonBuffer/createObject.cpp +++ b/test/StaticJsonBuffer/createObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/parseArray.cpp b/test/StaticJsonBuffer/parseArray.cpp index 2b37a006..948393e1 100644 --- a/test/StaticJsonBuffer/parseArray.cpp +++ b/test/StaticJsonBuffer/parseArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/parseObject.cpp b/test/StaticJsonBuffer/parseObject.cpp index 8e057b8d..d179cd7e 100644 --- a/test/StaticJsonBuffer/parseObject.cpp +++ b/test/StaticJsonBuffer/parseObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/size.cpp b/test/StaticJsonBuffer/size.cpp index ecd06586..179eab98 100644 --- a/test/StaticJsonBuffer/size.cpp +++ b/test/StaticJsonBuffer/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include diff --git a/test/StaticJsonBuffer/startString.cpp b/test/StaticJsonBuffer/startString.cpp index 8df90117..fb2aa9b8 100644 --- a/test/StaticJsonBuffer/startString.cpp +++ b/test/StaticJsonBuffer/startString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2019 +// Copyright Benoit Blanchon 2014-2023 // MIT License #include