Klasse SlingContext

java.lang.Object
org.apache.sling.testing.mock.osgi.context.OsgiContextImpl
org.apache.sling.testing.mock.sling.context.SlingContextImpl
org.apache.sling.testing.mock.sling.junit.SlingContext
Alle implementierten Schnittstellen:
org.junit.rules.TestRule

@ProviderType public final class SlingContext extends SlingContextImpl implements org.junit.rules.TestRule
JUnit rule for setting up and tearing down Sling context objects for unit tests. You can use SlingContextBuilder alternatively to the constructors on this class - it offers more options and fine-grained control about setting up the test context.
  • Konstruktordetails

    • SlingContext

      public SlingContext()
      Initialize Sling context with default resource resolver type: MockSling.DEFAULT_RESOURCERESOLVER_TYPE.
    • SlingContext

      public SlingContext(@NotNull @NotNull ResourceResolverType resourceResolverType)
      Initialize Sling context with resource resolver type.
      Parameter:
      resourceResolverType - Resource resolver type.
    • SlingContext

      public SlingContext(@NotNull @NotNull org.apache.sling.testing.mock.osgi.context.ContextCallback<T> afterSetUpCallback)
      Initialize Sling context with default resource resolver type: MockSling.DEFAULT_RESOURCERESOLVER_TYPE.
      Typparameter:
      T - context type
      Parameter:
      afterSetUpCallback - Allows the application to register an own callback function that is called after the built-in setup rules are executed.
    • SlingContext

      public SlingContext(@NotNull @NotNull org.apache.sling.testing.mock.osgi.context.ContextCallback<T> afterSetUpCallback, @NotNull @NotNull ResourceResolverType resourceResolverType)
      Initialize Sling context with resource resolver type.
      Typparameter:
      T - context type
      Parameter:
      afterSetUpCallback - Allows the application to register an own callback function that is called after the built-in setup rules are executed.
      resourceResolverType - Resource resolver type.
    • SlingContext

      public SlingContext(@NotNull @NotNull org.apache.sling.testing.mock.osgi.context.ContextCallback<U> afterSetUpCallback, @NotNull @NotNull org.apache.sling.testing.mock.osgi.context.ContextCallback<V> beforeTearDownCallback)
      Initialize Sling context with default resource resolver type: MockSling.DEFAULT_RESOURCERESOLVER_TYPE.
      Typparameter:
      U - context type
      V - context type
      Parameter:
      afterSetUpCallback - Allows the application to register an own callback function that is called after the built-in setup rules are executed.
      beforeTearDownCallback - Allows the application to register an own callback function that is called before the built-in teardown rules are executed.
    • SlingContext

      public SlingContext(@NotNull @NotNull org.apache.sling.testing.mock.osgi.context.ContextCallback<U> afterSetUpCallback, @NotNull @NotNull org.apache.sling.testing.mock.osgi.context.ContextCallback<V> beforeTearDownCallback, @NotNull @NotNull ResourceResolverType resourceResolverType)
      Initialize Sling context with resource resolver type.
      Typparameter:
      U - context type
      V - context type
      Parameter:
      afterSetUpCallback - Allows the application to register an own callback function that is called after the built-in setup rules are executed.
      beforeTearDownCallback - Allows the application to register an own callback function that is called before the built-in teardown rules are executed.
      resourceResolverType - Resource resolver type.
  • Methodendetails

    • apply

      public org.junit.runners.model.Statement apply(org.junit.runners.model.Statement base, org.junit.runner.Description description)
      Angegeben von:
      apply in Schnittstelle org.junit.rules.TestRule