Measures execution time for the scope as a single time, for both synchronous and coroutine methods. Passing the name argument overrides the name of the created SampleGroup. The defualt SampleGroup is named “Time” and with Milliseconds as measurement unit. You can also create your own SampleGroup, specifying a custom name and the measurement unit you want your results in, see example 2.
[Test, Performance]
public void Test()
{
using(Measure.Scope())
{
...
}
}
[Test, Performance]
public void Test()
{
var sampleGroup = new SampleGroup("Scope", SampleUnit.Microsecond);
using (Measure.Scope(sg))
{
...
}
}