SimpleSpeedTester

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

Since I do a fair bit of performance tests on random things that pique my interest, it’s only natural that I should make the task of carrying out these tests easier for myself, so over the weekend I put together a simple, no frills framework to do just that!

The SimpleSpeedTester project is intended to make it easier to:

  • time the execution of some code
  • orchestrate multiple runs of the same test
  • collate the execution time of the test runs
  • provide an easy way to obtain summary for the tests

What it’s not

It’s not a profiler! It doesn’t tell you which line of your code is taking what percentage of your CPU time or how much memory is used where. It’s intended for one thing and one thing only – help you speed test a specific piece of code/method over multiple runs, collate the results and work out the average for you so you don’t have to.

Getting Started

To get started, download the binaries here, reference the SimpleSpeedTester.dll in your project, and all you need is one line of code to schedule a test to be run multiple times and get a summary of the test runs:

   1: // initialize a new test group

   2: var testGroup = new TestGroup("Example2");

   3:  

   4: // PlanAndExecute executes the Action delegate 5 times and returns the result summary

   5: var testResultSummary = testGroup.PlanAndExecute("Test1", () => { }, 5);

   6:  

   7: Console.WriteLine(testResultSummary);

   8: /* prints out something along the line of

   9:  *

  10:  * Test Group [Example2], Test [Test1] results summary:

  11:  * Successes   [5]

  12:  * Failures    [0] 

  13:  * Average Exec Time [...] milliseconds

  14:  *

  15:  */

And you’re done! Easy, right? ;-)

I’ve included a couple more examples here covering the most common use cases, more will be added as I add more functionalities.

So what are you waiting for? Go on, download it and play around with it, let me know what you think, any constructive suggestions are very welcomed!

Whenever you’re ready, here are 4 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

Leave a Comment

Your email address will not be published. Required fields are marked *