Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for destinationDeploymentSetup (0.22 sec)

  1. pkg/test/framework/components/echo/echotest/setup.go

    func (t *T) SetupForDestination(setupFn dstSetupFn) *T {
    	t.destinationDeploymentSetup = append(t.destinationDeploymentSetup, setupFn)
    	return t
    }
    
    func (t *T) hasDestinationSetup() bool {
    	return len(t.deploymentPairSetup)+len(t.destinationDeploymentSetup) > 0
    }
    
    func (t *T) setupPair(ctx framework.TestContext, from echo.Callers, dsts echo.Services) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/echotest.go

    	sources      echo.Instances
    	destinations echo.Instances
    
    	destinationFilters []CombinationFilter
    
    	sourceDeploymentSetup      []srcSetupFn
    	deploymentPairSetup        []svcPairSetupFn
    	destinationDeploymentSetup []dstSetupFn
    
    	cfg *config.Builder
    }
    
    // New creates a *T using the given applications as sources and destinations for each subtest.
    func New(ctx framework.TestContext, instances echo.Instances) *T {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 23:26:33 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top