File tree Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Original file line number Diff line number Diff line change
1
+ ; PlatformIO Project Configuration File
2
+ ;
3
+ ; Build options: build flags, source filter
4
+ ; Upload options: custom upload port, speed and extra flags
5
+ ; Library options: dependencies, extra library storages
6
+ ; Advanced options: extra scripting
7
+ ;
8
+ ; Please visit documentation for the other options and examples
9
+ ; https://docs.platformio.org/page/projectconf.html
10
+
1
11
[env:native]
2
12
platform = native
3
13
build_flags = -std =gnu++11
4
- -I .pio/libdeps/native/FakeIt/single_header/standalone
14
+ -I .pio/libdeps/native/FakeIt/single_header/standalone
5
15
test_build_src = yes
6
- lib_deps = https://github.com/eranpeer/FakeIt.git
7
-
8
- # [env:debug]
9
- # platform = native
10
- # build_flags = -std=gnu++17
11
- # test_build_src = yes
12
- # build_type = debug
13
- # debug_test = *
16
+ lib_deps =
17
+ https://github.com/eranpeer/FakeIt.git
18
+ throwtheswitch/Unity@^2.5.2
Original file line number Diff line number Diff line change 4
4
#define USBCON
5
5
#endif
6
6
7
- #include < map >
7
+ #include < unordered_map >
8
8
#include < cstring>
9
9
#include < cstdint>
10
10
#include < stdexcept>
@@ -91,7 +91,7 @@ class ArduinoFakeContext
91
91
public:
92
92
ArduinoFakeInstances* Instances = new ArduinoFakeInstances();
93
93
ArduinoFakeMocks* Mocks = new ArduinoFakeMocks();
94
- std::map <void *, void *> Mapping;
94
+ std::unordered_map <void *, void *> Mapping;
95
95
96
96
_ArduinoFakeInstanceGetter1 (Print)
97
97
_ArduinoFakeInstanceGetter1 (Stream)
You can’t perform that action at this time.
0 commit comments