mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
695 B
31 lines
695 B
// ==========================================================================
|
|
// IBenchmark.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
namespace Benchmarks
|
|
{
|
|
public abstract class Benchmark
|
|
{
|
|
public virtual void Initialize()
|
|
{
|
|
}
|
|
|
|
public virtual void RunInitialize()
|
|
{
|
|
}
|
|
|
|
public virtual void RunCleanup()
|
|
{
|
|
}
|
|
|
|
public virtual void Cleanup()
|
|
{
|
|
}
|
|
|
|
public abstract long Run();
|
|
}
|
|
}
|
|
|