12 references to FromEndpoint
Aspire.Hosting.Tests (12)
ApplicationModel\McpServerEndpointAnnotationTests.cs (12)
43Assert.Throws<ArgumentNullException>(() => McpServerEndpointAnnotation.FromEndpoint(null!)); 49Assert.Throws<ArgumentException>(() => McpServerEndpointAnnotation.FromEndpoint("")); 55Assert.Throws<ArgumentException>(() => McpServerEndpointAnnotation.FromEndpoint(" ")); 61var annotation = McpServerEndpointAnnotation.FromEndpoint("nonexistent"); 77var annotation = McpServerEndpointAnnotation.FromEndpoint("http"); 92var annotation = McpServerEndpointAnnotation.FromEndpoint("http", "/sse"); 107var annotation = McpServerEndpointAnnotation.FromEndpoint("http", null); 123var annotation = McpServerEndpointAnnotation.FromEndpoint("http", ""); 139var annotation = McpServerEndpointAnnotation.FromEndpoint("http", "custom/path"); 154var annotation = McpServerEndpointAnnotation.FromEndpoint("http", "/mcp"); 169var annotation = McpServerEndpointAnnotation.FromEndpoint("http"); 186var annotation = McpServerEndpointAnnotation.FromEndpoint("https", "/mcp");