Class XlrExtension

java.lang.Object
com.xebialabs.xlrelease.rules.XlrExtension
All Implemented Interfaces:
org.junit.jupiter.api.extension.AfterEachCallback, org.junit.jupiter.api.extension.BeforeEachCallback, org.junit.jupiter.api.extension.Extension

public abstract class XlrExtension extends Object implements org.junit.jupiter.api.extension.BeforeEachCallback, org.junit.jupiter.api.extension.AfterEachCallback
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
    after(org.junit.jupiter.api.extension.ExtensionContext context)
     
    final void
    afterEach(org.junit.jupiter.api.extension.ExtensionContext context)
     
    protected abstract void
    before(org.junit.jupiter.api.extension.ExtensionContext context)
     
    final void
    beforeEach(org.junit.jupiter.api.extension.ExtensionContext context)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • XlrExtension

      public XlrExtension()
  • Method Details

    • beforeEach

      public final void beforeEach(org.junit.jupiter.api.extension.ExtensionContext context) throws Exception
      Specified by:
      beforeEach in interface org.junit.jupiter.api.extension.BeforeEachCallback
      Throws:
      Exception
    • afterEach

      public final void afterEach(org.junit.jupiter.api.extension.ExtensionContext context)
      Specified by:
      afterEach in interface org.junit.jupiter.api.extension.AfterEachCallback
    • before

      protected abstract void before(org.junit.jupiter.api.extension.ExtensionContext context) throws Exception
      Throws:
      Exception
    • after

      protected void after(org.junit.jupiter.api.extension.ExtensionContext context)