2021-03-29 17:14:01 +02:00
|
|
|
# ArduinoJson - https://arduinojson.org
|
2023-02-16 11:45:01 +01:00
|
|
|
# Copyright © 2014-2023, Benoit BLANCHON
|
2017-04-10 15:36:59 +02:00
|
|
|
# MIT License
|
|
|
|
|
2022-06-09 21:06:32 +02:00
|
|
|
add_executable(JsonArrayTests
|
2017-04-10 15:36:59 +02:00
|
|
|
add.cpp
|
2021-06-26 11:23:40 +02:00
|
|
|
clear.cpp
|
2022-06-09 21:06:32 +02:00
|
|
|
compare.cpp
|
2019-02-15 15:33:04 +01:00
|
|
|
copyArray.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
createNested.cpp
|
2018-10-12 12:00:27 +02:00
|
|
|
equals.cpp
|
2018-07-12 09:08:20 +02:00
|
|
|
isNull.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
iterator.cpp
|
2019-01-17 09:55:51 +01:00
|
|
|
nesting.cpp
|
2017-04-12 17:03:33 +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
|
2021-12-16 14:55:26 +01:00
|
|
|
unbound.cpp
|
2017-04-10 15:36:59 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
add_test(JsonArray JsonArrayTests)
|
2021-04-25 11:38:19 +02:00
|
|
|
|
|
|
|
set_tests_properties(JsonArray
|
|
|
|
PROPERTIES
|
2023-02-09 10:00:38 +01:00
|
|
|
LABELS "Catch"
|
2021-06-26 11:28:59 +02:00
|
|
|
)
|