I want to write load tests for a system written in C#, and would like to have results similar to Apache Benchmark for websites (runs per second, average time per run, ...). Something like this:
static void RunSingleTest()
{
// The operation I want to test (e.g. expensive calculations or includes
// network delays)
}
public static void Main()
{
Results serialized = Framework.RunLoadTest(
concurrency: 1,
repetitions: 100,
testFunction: RunSingleTest);
Results parallel = Framework.RunLoadTest(
concurrency: 5,
repetitions: 1000,
testFunction: RunSingleTest);
// print results
}
Is there any framework that can handle all the threading and timing for me in this simple form?