7 references to openContainerObservable
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (7)
PersistentStorage\Mocks\SolutionServiceMock.cs (7)
32
get => this.
openContainerObservable
.Value.SolutionFilePath;
33
set => this.
openContainerObservable
.Value = this.
openContainerObservable
.Value with { SolutionFilePath = value };
41
return Task.FromResult(this.
openContainerObservable
.Subscribe(observer));
44
public Task<OpenCodeContainersState> GetOpenCodeContainersStateAsync(CancellationToken cancellationToken) => Task.FromResult(this.
openContainerObservable
.Value);
64
internal void SimulateFolderChange(IReadOnlyList<Uri> folderPaths) => this.
openContainerObservable
.Value = this.
openContainerObservable
.Value with { OpenFolderPaths = folderPaths };