Concept Flow - Performance testing with measure blocks
Start Test
↓
Setup Code
↓
Enter measure block
↓
Run code multiple times
↓
Record time for each run
↓
Calculate average time
↓
Report performance
↓
End Test
The test runs the code inside the measure block many times, records each run's time, then calculates and reports the average time to check performance.
This code measures how long it takes to double numbers from 1 to 1000 repeatedly.
Execution Table
Iteration
Code Run
Time Taken (ms)
Action
Output
1
Double numbers 1 to 1000
5.2
Run code inside measure block
Array of doubled numbers
2
Double numbers 1 to 1000
5.0
Run code inside measure block
Array of doubled numbers
3
Double numbers 1 to 1000
5.1
Run code inside measure block
Array of doubled numbers
4
Double numbers 1 to 1000
5.3
Run code inside measure block
Array of doubled numbers
5
Double numbers 1 to 1000
5.0
Run code inside measure block
Array of doubled numbers
Average
-
5.12
Calculate average time
Average time for all runs
💡 All iterations completed, average time calculated and reported
Variable Tracker
Variable
Start
After 1
After 2
After 3
After 4
After 5
Final
timeTaken
-
5.2 ms
5.0 ms
5.1 ms
5.3 ms
5.0 ms
5.12 ms (average)
outputArray
-
Array(1000 elements)
Array(1000 elements)
Array(1000 elements)
Array(1000 elements)
Array(1000 elements)
Array(1000 elements)
Key Moments - 3 Insights
Why does the measure block run the code multiple times instead of once?
The measure block runs the code many times to get a reliable average time, avoiding random slowdowns or speedups in a single run (see execution_table rows 1-5).
Does the output of the code inside the measure block affect the performance result?
The output is created each time but not stored outside; the focus is on timing the code execution, not the output itself (see variable_tracker outputArray).
What happens if the code inside the measure block is very fast or very slow?
The measure block still runs multiple times and reports average time, so very fast code shows small times, and slow code shows larger times, helping compare performance fairly.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what is the time taken at iteration 3?
A5.3 ms
B5.1 ms
C5.0 ms
D5.2 ms
💡 Hint
Check the 'Time Taken (ms)' column for iteration 3 in the execution_table.
At which iteration does the time taken equal 5.0 ms?
AIteration 1
BIteration 2
CIteration 4
DIteration 5
💡 Hint
Look at the 'Time Taken (ms)' values in execution_table rows for iterations 2 and 5.
If the code inside the measure block took longer, how would the average time in variable_tracker change?
AIt would increase
BIt would stay the same
CIt would decrease
DIt would become zero
💡 Hint
Average time is calculated from all iteration times shown in variable_tracker under 'timeTaken'.
Concept Snapshot
Performance testing with measure blocks in Swift:
- Use self.measure { code } inside XCTest
- Runs code multiple times automatically
- Records time for each run
- Calculates average time
- Helps find slow or fast code parts
Full Transcript
This visual shows how performance testing works in Swift using measure blocks. The test runs the code inside the measure block multiple times, recording how long each run takes. Then it calculates the average time to give a clear picture of performance. Variables like timeTaken track each run's duration, and the outputArray shows the result of the code run each time. Key points include why multiple runs are needed for accuracy and how the average time helps compare performance. The quiz questions help check understanding by asking about specific times and effects of changes.