private void AssertMiniProfilerExists(MiniProfiler miniProfiler)
        {
            var count = _conn.QuerySingle <int>("select count(*) from MiniProfilers where Id = @Id", new { miniProfiler.Id });

            Assert.Equal(1, count);
        }