Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Improve stability of the repo #296

Merged
merged 18 commits into from
Jan 31, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More fixes for contrib test to use external JSON library.
  • Loading branch information
kotl committed Nov 11, 2017
commit 651a5b9d6e708112f66fc47d2cc79d48c289607b
1 change: 1 addition & 0 deletions contrib/test/FirebaseArduino_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include "FirebaseObject.h"
#include "gtest/gtest.h"
#include "WString.h"

TEST(FirebaseObjectTest, GetBool) {
FirebaseObject obj("true");
Expand Down
2 changes: 2 additions & 0 deletions contrib/test/modem/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ FIREBASE_ROOT = ../../..
PROJECT_ROOT = ../..
SRC_ROOT = $(PROJECT_ROOT)/src
FIREBASE_SRC_ROOT = $(FIREBASE_ROOT)/src
ARDUINOJSON_DIR=$(ARDUINO_HOME)/libraries/ArduinoJson

# Flags passed to the preprocessor.
# Set Google Test and Google Mock's header directories as system
Expand All @@ -45,6 +46,7 @@ CPPFLAGS += -isystem $(GTEST_DIR)/include -isystem $(GMOCK_DIR)/include \
-I$(PROJECT_ROOT)/test/dummies \
-I$(PROJECT_ROOT)/src \
-I$(FIREBASE_ROOT)/src \
-I$(ARDUINOJSON_DIR)/src \
-I$(PROJECT_ROOT)

# Flags passed to the C++ compiler.
Expand Down