Tabnine Logo
ProxyTestSuite.flowDown
Code IndexAdd Tabnine to your IDE (free)

How to use
flowDown
method
in
junit.extensions.proxy.ProxyTestSuite

Best Java code snippets using junit.extensions.proxy.ProxyTestSuite.flowDown (Showing top 8 results out of 315)

origin: com.blazegraph/junit-ext

protected void flowDown(Test t) {
  if (m_delegate == null) {
    throw new AssertionError("delegate is not set.");
  }
  
  if ( t instanceof TestSuite ) {
    
    flowDown( (TestSuite) t );
    
  } else if (t instanceof IProxyTest) {
    log.debug("Setting delegate on " + t.getClass() + " to "
        + m_delegate.getClass());
    ((IProxyTest) t).setDelegate(m_delegate);
  }
}
 
origin: blazegraph/database

protected void flowDown(Test t) {
  if (m_delegate == null) {
    throw new AssertionError("delegate is not set.");
  }
  
  if ( t instanceof TestSuite ) {
    
    flowDown( (TestSuite) t );
    
  } else if (t instanceof IProxyTest) {
    log.debug("Setting delegate on " + t.getClass() + " to "
        + m_delegate.getClass());
    ((IProxyTest) t).setDelegate(m_delegate);
  }
}
 
origin: blazegraph/database

/**
 * <p>
 * Sets the delegate on each instantiated {@link Test} that implements
 * {@link IProxyTest}.
 * </p>
 */
@SuppressWarnings("unchecked")
protected void flowDown( final TestSuite suite ) {
  
  if( m_delegate == null ) {
  
    throw new AssertionError("delegate is not set.");
    
  }
  
for( java.util.Enumeration e= suite.tests(); e.hasMoreElements(); ) {
   Test t = (Test)e.nextElement();
   flowDown( t );
   }
}
origin: com.blazegraph/junit-ext

/**
 * <p>
 * Sets the delegate on each instantiated {@link Test} that implements
 * {@link IProxyTest}.
 * </p>
 */
@SuppressWarnings("unchecked")
protected void flowDown( final TestSuite suite ) {
  
  if( m_delegate == null ) {
  
    throw new AssertionError("delegate is not set.");
    
  }
  
for( java.util.Enumeration e= suite.tests(); e.hasMoreElements(); ) {
   Test t = (Test)e.nextElement();
   flowDown( t );
   }
}
origin: blazegraph/database

flowDown( test );
origin: com.blazegraph/junit-ext

flowDown( test );
origin: blazegraph/database

flowDown(this);
flowDown(this);
origin: com.blazegraph/junit-ext

flowDown(this);
flowDown(this);
junit.extensions.proxyProxyTestSuiteflowDown

Javadoc

Sets the delegate on each instantiated Test that implements IProxyTest.

Popular methods of ProxyTestSuite

  • <init>
    Creates an empty named test suite. The declared will be assigned to tests added to this test suite t
  • addTest
    If the suite is not a ProxyTestSuite, then the tests in the suite are recursively enumerated and a p
  • addTestSuite
    We override the implementation of TestSuite#addTestSuite(Class theClass) to wrap thetestClass in ano
  • getDelegate
    Returns the delegate supplied to the constructor.
  • checkDelegate
    Invoked automatically by the constructors.

Popular in Java

  • Reading from database using SQL prepared statement
  • getContentResolver (Context)
  • getResourceAsStream (ClassLoader)
  • getSupportFragmentManager (FragmentActivity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JList (javax.swing)
  • Option (scala)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now