Class SummaryPrinterAdapter

java.lang.Object
org.eclipse.edc.plugins.edcbuild.plugins.SummaryPrinterAdapter
All Implemented Interfaces:
org.gradle.api.tasks.testing.TestListener

public abstract class SummaryPrinterAdapter extends Object implements org.gradle.api.tasks.testing.TestListener
Adapter for the TestListener, that allows overriding just one method. Currently, only the TestListener.afterSuite(TestDescriptor, TestResult) is used.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterSuite(org.gradle.api.tasks.testing.TestDescriptor suite, org.gradle.api.tasks.testing.TestResult result)
     
    void
    afterTest(org.gradle.api.tasks.testing.TestDescriptor testDescriptor, org.gradle.api.tasks.testing.TestResult result)
     
    void
    beforeSuite(org.gradle.api.tasks.testing.TestDescriptor suite)
     
    void
    beforeTest(org.gradle.api.tasks.testing.TestDescriptor testDescriptor)
     

    Methods inherited from class java.lang.Object

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

    • SummaryPrinterAdapter

      public SummaryPrinterAdapter()
  • Method Details

    • beforeSuite

      public void beforeSuite(org.gradle.api.tasks.testing.TestDescriptor suite)
      Specified by:
      beforeSuite in interface org.gradle.api.tasks.testing.TestListener
    • afterSuite

      public void afterSuite(org.gradle.api.tasks.testing.TestDescriptor suite, org.gradle.api.tasks.testing.TestResult result)
      Specified by:
      afterSuite in interface org.gradle.api.tasks.testing.TestListener
    • beforeTest

      public void beforeTest(org.gradle.api.tasks.testing.TestDescriptor testDescriptor)
      Specified by:
      beforeTest in interface org.gradle.api.tasks.testing.TestListener
    • afterTest

      public void afterTest(org.gradle.api.tasks.testing.TestDescriptor testDescriptor, org.gradle.api.tasks.testing.TestResult result)
      Specified by:
      afterTest in interface org.gradle.api.tasks.testing.TestListener