public void HandlePostRequestHandler_Stopwatch_Tests()
        {
            // setup for tests
            HttpContextBase    context = new MockHttpContext();
            PerformanceMonitor pm      = new PerformanceMonitor();

            pm.HandlePreRequestHandler(context);
            pm.HandlePostRequestHandler(context);

            // Stopwatch tests
            Post_Stopwatch_Tests(context, "handler_timer");
        }