View Javadoc

1   package com.atlassian.webdriver.testing.rule;
2   
3   import com.atlassian.pageobjects.inject.InjectionContext;
4   import org.junit.rules.TestRule;
5   
6   /**
7    * A test rule capable of performing injection.
8    *
9    * @since 2.1
10   */
11  public interface InjectingTestRule extends TestRule, InjectionContext
12  {
13  }