consistent variable usage
This commit is contained in:
parent
349fa1c154
commit
83e79fffd6
|
@ -67,8 +67,8 @@ pod "Cuckoo"
|
||||||
And add the following `Run script` build phase to your test target's `Build Phases`:
|
And add the following `Run script` build phase to your test target's `Build Phases`:
|
||||||
|
|
||||||
```Bash
|
```Bash
|
||||||
# Define output file. Change "$PROJECT_DIR/${PROJECT_NAME}Tests" to your test's root source folder, if it's not the default name.
|
# Define output file. Change "${PROJECT_DIR}/${PROJECT_NAME}Tests" to your test's root source folder, if it's not the default name.
|
||||||
OUTPUT_FILE="$PROJECT_DIR/${PROJECT_NAME}Tests/GeneratedMocks.swift"
|
OUTPUT_FILE="${PROJECT_DIR}/${PROJECT_NAME}Tests/GeneratedMocks.swift"
|
||||||
echo "Generated Mocks File = $OUTPUT_FILE"
|
echo "Generated Mocks File = $OUTPUT_FILE"
|
||||||
|
|
||||||
# Define input directory. Change "${PROJECT_DIR}/${PROJECT_NAME}" to your project's root source folder, if it's not the default name.
|
# Define input directory. Change "${PROJECT_DIR}/${PROJECT_NAME}" to your project's root source folder, if it's not the default name.
|
||||||
|
|
Loading…
Reference in New Issue