arduino-gmock-sample
arduino-gmock-sample copied to clipboard
Hello, Theses changes where needed to make it compile on my machine. Thanks
Users might have .h files in the ../test directory that need to be included. ``` -I../$(TEST_DIR) ```
Is there a reason you went away from googltest naming of USER_DIR to TEST_DIR which require $(TEST_DIR)../ Before all user paths? It seems like bad form and can easily be...
Currently requires you to #include "arduinomock/Arduino.h" which breaks all usual include paths. Instead include like ``` -I$(ARDUINO_MOCK_DIR)/include/arduino-mock/ ```
In testing I've found I need to bring in a few other libraries. I'm currently doing this like so ``` DEP_DIR = ../../ringbuffer # Flags passed to the preprocessor. #...