Edit README.md

Edit file for consistent person.
pull/10391/head
Amanda Butler 2019-04-15 15:56:26 -05:00 committed by GitHub
parent a4308426da
commit 1d1e78cac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ You can also set custom compiler flags and other configurations supported by CMa
#### Example
With the following steps, you can write a simple unit test. In this example we will create dummy classes to be tested. Then we will create and configure unit tests for a class. Finally we will stub all external dependencies.
With the following steps, you can write a simple unit test. This example creates dummy classes to be tested, creates and configures unit tests for a class and stubs all external dependencies.
1. Create the following dummy classes in `mbed-os/example`:
@ -245,7 +245,7 @@ With the following steps, you can write a simple unit test. In this example we w
}
```
This example does not use any Mbed OS code, but if your unit tests do then remember to update header stubs in `UNITTESTS/target_h` and source stubs in `UNITTESTS/stubs` with any missing type or function declarations.
This example does not use any Mbed OS code, but if your unit tests do, then remember to update header stubs in `UNITTESTS/target_h` and source stubs in `UNITTESTS/stubs` with any missing type or function declarations.
### Building and running unit tests