2021-03-29 17:14:01 +02:00
|
|
|
# ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
# Copyright Benoit Blanchon 2014-2021
|
2017-04-10 15:36:59 +02:00
|
|
|
# MIT License
|
|
|
|
|
|
|
|
add_executable(JsonObjectTests
|
2021-06-26 11:23:40 +02:00
|
|
|
clear.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
containsKey.cpp
|
2018-10-04 11:16:23 +02:00
|
|
|
copy.cpp
|
2018-08-22 14:37:17 +02:00
|
|
|
createNestedArray.cpp
|
|
|
|
createNestedObject.cpp
|
2018-10-12 12:00:27 +02:00
|
|
|
equals.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
invalid.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
isNull.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
iterator.cpp
|
2019-01-16 09:50:57 +01:00
|
|
|
memoryUsage.cpp
|
2019-01-17 09:55:51 +01:00
|
|
|
nesting.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
remove.cpp
|
2018-01-14 13:46:28 +01:00
|
|
|
size.cpp
|
2018-05-14 17:12:59 +02:00
|
|
|
std_string.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
subscript.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_test(JsonObject JsonObjectTests)
|
2021-04-25 11:38:19 +02:00
|
|
|
|
|
|
|
set_tests_properties(JsonObject
|
|
|
|
PROPERTIES
|
|
|
|
LABELS "Catch"
|
2021-06-26 11:28:59 +02:00
|
|
|
)
|