arduino-gmock-sample icon indicating copy to clipboard operation
arduino-gmock-sample copied to clipboard

Results 5 arduino-gmock-sample issues
Sort by recently updated
recently updated
newest added

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. #...