Add performance tracing

This commit is contained in:
Andrew Stanton-Nurse 2016-04-27 16:04:26 -07:00 committed by Pavel Krymets
parent 563f6497fd
commit 36e56e9d00
12 changed files with 348 additions and 50 deletions

View file

@ -14,7 +14,10 @@ namespace Microsoft.DotNet.Tests
{
public class MockTelemetry : ITelemetry
{
public string EventName{get;set;}
public bool Enabled { get; set; }
public string EventName { get; set; }
public void TrackEvent(string eventName, IDictionary<string, string> properties, IDictionary<string, double> measurements)
{
EventName = eventName;