1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00
esp8266/tests/device/test_umm_malloc/test_umm_malloc.ino
2016-04-26 16:04:19 +08:00

22 lines
297 B
C++

// test that we can include umm_malloc.h from sketch (#1652)
#include <umm_malloc/umm_malloc.h>
#include <BSTest.h>
BS_ENV_DECLARE();
void setup()
{
Serial.begin(115200);
BS_RUN(Serial);
}
TEST_CASE("umm_info can be called", "[umm_malloc]")
{
umm_info(NULL, 1);
}
void loop()
{
}