Hello,
I have received a sketch beginning with this instruction:
#line 2 "unit_tests_core.ino"
I get this error message when compiling:
unit_tests_core.ino:2:25: fatal error: ArduinoUnit.h: No such file or directory
What's wrong?
Hello,
I have received a sketch beginning with this instruction:
#line 2 "unit_tests_core.ino"
I get this error message when compiling:
unit_tests_core.ino:2:25: fatal error: ArduinoUnit.h: No such file or directory
What's wrong?
I think that it is more likely this line that it is having trouble with.
#include <ArduinoUnit.h>
The compiler can't find that file. Where is that file located?
From:
These files require the library ArduinoUnit which can be downloaded here: GitHub - mmurdoch/arduinounit: ArduinoUnit is a unit testing framework for Arduino libraries
The linked page (GitHub - mmurdoch/arduinounit: ArduinoUnit is a unit testing framework for Arduino libraries) has installation instructions.
groundFungus:
From:
Pozyx-Arduino-library/unit_tests at master · pozyxLabs/Pozyx-Arduino-library · GitHub
The linked page (GitHub - mmurdoch/arduinounit: ArduinoUnit is a unit testing framework for Arduino libraries) has installation instructions.
Oh, I see. Thanks a lot groundFugus!