如何测量C#中每行的执行时间

时间:2016-03-03 11:34:34

标签: c# profiling stopwatch

我有以下Selenium测试:

[TestMethod]
public void Edit()
{
    Driver.GoToAdministrera();

    Driver.ClickLink(strings.ActorSettings);

    Driver.SendKeysToId(text, "Attributes");

    Driver.Navigate().Refresh();

    Driver.AssertTextInId(string.Empty, "Attributes");

    Driver.SendKeysToId(text, "Attributes");

    Driver.ClickClass("submitbutton");

    Thread.Sleep(3000);

    Driver.Navigate().Refresh();

    Driver.AssertTextInId(text, "Attributes");
}

这很慢,我想分析瓶颈在哪里。我知道我可以描述测试,但这会给我一些很长的堆栈跟踪和热点。我只想知道每一行的执行时间。

我知道我可以使用StopWatch类。我甚至可以为此做一些帮助方法:

protected static void Time(Action action)
{
    var sw = new Stopwatch();
    sw.Reset();
    sw.Start();

    action();

    sw.Stop();
    Console.WriteLine(sw.Elapsed + " " + action.Method.Name);
}

但这需要我修改我的测试。

有没有人知道一种方法来获取执行的一段代码中每一行的时间?

2 个答案:

答案 0 :(得分:1)

DateTime start = DateTime.Now;
// Do Processing
Driver.GoToAdministrera();
DateTime end = DateTime.Now;
Console.WriteLine("Time taken : " + (end - start));

答案 1 :(得分:1)

如果您使用Visual Studio 2015或更高版本,则可以在调试器下运行测试并查找PerfTips值。从一行到另一行,您将获得测试的每一行的经过时间的估计值,这可能是您需要的。