File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
SampleProjects/NetworkLib/test Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3434- Travis and Appveyor CI
3535
3636### Fixed
37+ - Missing include of ` IPAddress.h ` in ` Client.h `
3738- Mismatches between library names in ` library.properties ` and the directory names, which can cause cryptic failures
3839- ` LibraryProperties ` skips over parse errors instead of crashing: only lines with non-empty keys and non-nil values are recorded
3940
Original file line number Diff line number Diff line change 1+ #include < ArduinoUnitTests.h>
2+ // test for including <Client.h> without <Arduino.h>
3+ #include < Client.h>
4+
5+ unittest (test) { assertTrue (true ); }
6+
7+ unittest_main ()
Original file line number Diff line number Diff line change 11#pragma once
22
33#include < Stream.h>
4+ #include < IPAddress.h>
45
56class Client : public Stream {
67public:
You can’t perform that action at this time.
0 commit comments