File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
features/FEATURE_BLE/tests Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ # mbed BLE host tests
2
+
3
+ This folder contains tests for mbed BLE that can be run on an x86 host.
4
+
5
+ ## Getting started
6
+
7
+ Run the following instructions to build the tests:
8
+
9
+ ```
10
+ cd features/FEATURE_BLE/tests
11
+ mkdir build
12
+ cd build
13
+ cmake ..
14
+ make
15
+ ```
16
+
17
+ The various tests applications are present at the root of the test folder;
18
+ execute them to run the tests. As an examples gatt client related tests can be
19
+ run with:
20
+
21
+ ```
22
+ ./gatt-client-tests
23
+ ```
24
+
25
+ ## Requirements
26
+
27
+ These tests requires cmake on the host and a compliant C++14 compiler.
28
+
29
+ ## Resources
30
+
31
+ These tests use extensively google test (gtest) and google mock. Please refer to
32
+ the documentation of each products to get more insight:
33
+ * gtest: https://github.com/google/googletest/tree/master/googletest/docs
34
+ * gmock: https://github.com/google/googletest/tree/master/googlemock/docs
35
+
You can’t perform that action at this time.
0 commit comments