mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
8 lines
196 B
C++
8 lines
196 B
C++
#include <gtest/gtest.h>
|
|
#include <StaticJsonBuffer.h>
|
|
|
|
TEST(StaticJsonBufferTests, CapacityMatchTemplateParameter)
|
|
{
|
|
StaticJsonBuffer<42> json;
|
|
EXPECT_EQ(42, json.capacity());
|
|
} |