10 writes to Content
Aspire.Dashboard (1)
ConsoleLogs\LogParser.cs (1)
69Content = content,
Aspire.Dashboard.Tests (9)
ConsoleLogsTests\LogEntriesTests.cs (9)
21logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 22logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 3); 23logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 2); 42logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 43logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 2); 44logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 3); 62logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(1), Content = "1" }, 1); 63logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(3), Content = "3" }, 2); 64logEntries.InsertSorted(new LogEntry { Timestamp = timestamp.AddSeconds(2), Content = "2" }, 3);
7 references to Content
Aspire.Dashboard.Tests (7)
ConsoleLogsTests\LogEntriesTests.cs (7)
28l => Assert.Equal("1", l.Content), 29l => Assert.Equal("2", l.Content), 30l => Assert.Equal("3", l.Content)); 49l => Assert.Equal("2", l.Content), 50l => Assert.Equal("3", l.Content)); 69l => Assert.Equal("2", l.Content), 70l => Assert.Equal("3", l.Content));