|  | @@ -1799,6 +1799,26 @@ TEST_P(XdsResolverOnlyTest, RestartsRequestsUponReconnection) {
 | 
	
		
			
				|  |  |    EXPECT_EQ(0, std::get<1>(counts));
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +TEST_P(XdsResolverOnlyTest, DefaultRouteSpecifiesSlashPrefix) {
 | 
	
		
			
				|  |  | +  RouteConfiguration route_config =
 | 
	
		
			
				|  |  | +      balancers_[0]->ads_service()->default_route_config();
 | 
	
		
			
				|  |  | +  route_config.mutable_virtual_hosts(0)
 | 
	
		
			
				|  |  | +      ->mutable_routes(0)
 | 
	
		
			
				|  |  | +      ->mutable_match()
 | 
	
		
			
				|  |  | +      ->set_prefix("/");
 | 
	
		
			
				|  |  | +  balancers_[0]->ads_service()->SetLdsResource(
 | 
	
		
			
				|  |  | +      AdsServiceImpl::BuildListener(route_config), kDefaultResourceName);
 | 
	
		
			
				|  |  | +  SetNextResolution({});
 | 
	
		
			
				|  |  | +  SetNextResolutionForLbChannelAllBalancers();
 | 
	
		
			
				|  |  | +  AdsServiceImpl::EdsResourceArgs args({
 | 
	
		
			
				|  |  | +      {"locality0", GetBackendPorts()},
 | 
	
		
			
				|  |  | +  });
 | 
	
		
			
				|  |  | +  balancers_[0]->ads_service()->SetEdsResource(
 | 
	
		
			
				|  |  | +      AdsServiceImpl::BuildEdsResource(args), kDefaultResourceName);
 | 
	
		
			
				|  |  | +  // We need to wait for all backends to come online.
 | 
	
		
			
				|  |  | +  WaitForAllBackends();
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  class XdsResolverLoadReportingOnlyTest : public XdsEnd2endTest {
 | 
	
		
			
				|  |  |   public:
 | 
	
		
			
				|  |  |    XdsResolverLoadReportingOnlyTest() : XdsEnd2endTest(4, 1, 3) {}
 |