Contents

measure(_:)

Measures the performance of a block of code.

Declaration

func measure(_ block: () -> Void)

Parameters

  • block:

    A block whose performance is measured.

Discussion

Call this method from within a test method to measure the performance of a block of code. By default, this method measures the number of seconds the block of code takes to execute. Override defaultPerformanceMetrics to change the default metrics measured by this method.

See Also

Measuring Performance