Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
If you don't find anything else, writing something like this by yourself should be quite simple. – svick Mar 11 '12 at 19:08
Yes, will be my next open source project if there are no answers ;) – AndiDog Mar 11 '12 at 19:12

2 Answers

This could probably interest you; I haven't used it myself, but bookmarked it some time ago.

NTime: http://www.codeproject.com/Articles/7008/NTime-Performance-unit-testing-tool

share|improve this answer
Nice tool actually, if recompiled for .NET 4 so that it can load newer assemblies. It does not give detailed information about how long each test run took, and it's not possible to define how often a test should be executed (fixed to averaging over 5*numberOfThreads calls). Source code isn't very readable, but fair enough. zlib licensing is nice though, and it has a NUnit-like GUI. Will try my luck with it. With a few changes it might be quite handy (if not, I'll create a solution by myself but I think I will have little time). – AndiDog Mar 12 '12 at 16:27
up vote 0 down vote accepted

I started working on a simpler framework than NTime is. More exactly, NTime is not a good framework for standalone usage because it does not really offer a separate component for benchmarking. As a testing framework (tests as in "unit tests"), it is very good.

NSiege, as I called my small new project (after the great benchmarking tool Siege), will be simpler, split into 1) a benchmark framework and 2) later probably a test GUI and appropriate method attributes (what NTime provides). Hope someone finds it useful. Suggestions welcome, and mind that right now, it's still just coming of age.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.