File tree 3 files changed +9
-0
lines changed
SampleProjects/NetworkLib/test
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/).
34
34
- Travis and Appveyor CI
35
35
36
36
### Fixed
37
+ - Missing include of ` IPAddress.h ` in ` Client.h `
37
38
- Mismatches between library names in ` library.properties ` and the directory names, which can cause cryptic failures
38
39
- ` LibraryProperties ` skips over parse errors instead of crashing: only lines with non-empty keys and non-nil values are recorded
39
40
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 1
1
#pragma once
2
2
3
3
#include < Stream.h>
4
+ #include < IPAddress.h>
4
5
5
6
class Client : public Stream {
6
7
public:
You can’t perform that action at this time.
0 commit comments