File: BenchmarkScenarioResult.cs
Web Access
Project: src\src\Components\benchmarkapps\Wasm.Performance\Driver\Wasm.Performance.Driver.csproj (Wasm.Performance.Driver)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Wasm.Performance.Driver;
 
sealed class BenchmarkScenarioResult
{
    public string Name { get; set; }
 
    public BenchmarkDescriptor Descriptor { get; set; }
 
    public string ShortDescription { get; set; }
 
    public bool Success { get; set; }
 
    public int NumExecutions { get; set; }
 
    public double Duration { get; set; }
 
    public sealed class BenchmarkDescriptor
    {
        public string Name { get; set; }
 
        public string Description { get; set; }
    }
}