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
|
2018-09-03 16:14:21 +02:00
|
|
|
# MIT License
|
|
|
|
|
2018-11-16 10:26:59 +01:00
|
|
|
add_executable(MemoryPoolTests
|
2018-11-09 17:27:32 +01:00
|
|
|
allocVariant.cpp
|
|
|
|
clear.cpp
|
2020-07-21 20:15:31 +02:00
|
|
|
saveString.cpp
|
2018-09-03 16:14:21 +02:00
|
|
|
size.cpp
|
2020-07-11 17:51:39 +02:00
|
|
|
StringCopier.cpp
|
2018-09-03 16:14:21 +02:00
|
|
|
)
|
|
|
|
|
2018-11-16 10:26:59 +01:00
|
|
|
add_test(MemoryPool MemoryPoolTests)
|
2021-04-25 11:38:19 +02:00
|
|
|
|
|
|
|
set_tests_properties(MemoryPool
|
|
|
|
PROPERTIES
|
|
|
|
LABELS "Catch"
|
|
|
|
)
|