1 write to _title
Aspire.Hosting.Rust.Tests (1)
tests\Shared\TestPipelineActivityReporter.cs (1)
187
_title
= title;
11 references to _title
Aspire.Hosting.Rust.Tests (11)
tests\Shared\TestPipelineActivityReporter.cs (11)
197
_reporter.CompletedSteps.Add((
_title
, completionText, completionState));
198
_reporter.OnStepCompleted?.Invoke(
_title
, completionText, completionState);
199
_testOutputHelper.WriteLine($" [CompleteStep:{
_title
}] {completionText} (State: {completionState})");
209
_reporter.CreatedTasks.Add((
_title
, statusText));
210
_testOutputHelper.WriteLine($" [CreateTask:{
_title
}] {statusText}");
220
_reporter.LoggedMessages.Add((
_title
, logLevel, message));
221
_testOutputHelper.WriteLine($" [{logLevel}:{
_title
}] {message}");
229
_reporter.LoggedMessages.Add((
_title
, logLevel, message));
230
_testOutputHelper.WriteLine($" [{logLevel}:{
_title
}] {message}");
239
_reporter.LoggedMessages.Add((
_title
, logLevel, message.Value));
240
_testOutputHelper.WriteLine($" [{logLevel}:{
_title
}] {message.Value}");