6 writes to State
aspire (1)
Backchannel\ResourceSnapshotMapper.cs (1)
122State = snapshot.State,
Aspire.Cli.Tests (5)
Commands\DescribeCommandTests.cs (5)
194new ResourceJson { Name = "frontend", DisplayName = "frontend", ResourceType = "Project", State = "Running" }, 195new ResourceJson { Name = "postgres", DisplayName = "postgres", ResourceType = "Container", State = "Running" }, 196new ResourceJson { Name = "redis", DisplayName = "redis", ResourceType = "Container", State = "Starting" } 236new ResourceJson { Name = "frontend", DisplayName = "frontend", ResourceType = "Project", State = "Running" }, 237new ResourceJson { Name = "postgres", DisplayName = "postgres", ResourceType = "Container", State = "Running" }
5 references to State
Aspire.Cli.Tests (5)
Commands\DescribeCommandTests.cs (3)
225Assert.Equal("Starting", parsedLines[2]!.State); 291Assert.Equal("Running", first.State); 297Assert.Equal("Stopping", second.State);
Commands\PsCommandTests.cs (2)
264Assert.Equal("Running", apiService.State); 271Assert.Equal("Running", redis.State);