7 references to MatchesAllFragments
aspire (2)
Commands\LogsCommand.cs (1)
489return SearchTextParser.MatchesAllFragments(fragments, (content, prefix, stripped), static (state, fragment) =>
Mcp\Tools\ListConsoleLogsTool.cs (1)
103SearchTextParser.MatchesAllFragments(
Aspire.Cli.Tests (5)
Utils\SearchTextParserTests.cs (5)
330Assert.True(SearchTextParser.MatchesAllFragments([], "anything", static (state, fragment) => 337Assert.True(SearchTextParser.MatchesAllFragments(["hello"], "hello world", static (state, fragment) => 344Assert.True(SearchTextParser.MatchesAllFragments(["HELLO"], "hello world", static (state, fragment) => 351Assert.False(SearchTextParser.MatchesAllFragments(["hello", "missing"], "hello world", static (state, fragment) => 358Assert.True(SearchTextParser.MatchesAllFragments(["hello", "world"], ("hello", "world"), static (state, fragment) =>