forked from bblanchon/ArduinoJson
Switched to Google coding style to match cpplint expectations
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
using namespace ArduinoJson::Internals;
|
||||
|
||||
class StringBuilderTests : public testing::Test {
|
||||
protected:
|
||||
protected:
|
||||
virtual void SetUp() { sb = new StringBuilder(buffer, sizeof(buffer)); }
|
||||
|
||||
void print(const char *value) { returnValue = sb->print(value); }
|
||||
@ -13,7 +13,7 @@ protected:
|
||||
|
||||
void resultMustBe(size_t expected) { EXPECT_EQ(expected, returnValue); }
|
||||
|
||||
private:
|
||||
private:
|
||||
char buffer[20];
|
||||
Print *sb;
|
||||
size_t returnValue;
|
||||
|
Reference in New Issue
Block a user