Class ParametrizedTest

java.lang.Object
org.apache.batik.test.AbstractTest
org.apache.batik.test.ParametrizedTest
All Implemented Interfaces:
Test

public class ParametrizedTest extends AbstractTest
This test validates that test properties are inherited from the class that defines the "class" attribute down to each test instance that uses the same class.
Version:
$Id: ParametrizedTest.java 1733416 2016-03-03 07:07:13Z gadams $
  • Field Details

    • A

      protected String A
    • B

      protected String B
    • expectedA

      protected String expectedA
    • expectedB

      protected String expectedB
  • Constructor Details

    • ParametrizedTest

      public ParametrizedTest()
  • Method Details

    • setA

      public void setA(String A)
    • setB

      public void setB(String B)
    • setExpectedA

      public void setExpectedA(String expectedA)
    • setExpectedB

      public void setExpectedB(String expectedB)
    • getA

      public String getA()
    • getB

      public String getB()
    • getExpectedA

      public String getExpectedA()
    • getExpectedB

      public String getExpectedB()
    • runImpl

      public TestReport runImpl() throws Exception
      Description copied from class: AbstractTest
      Subclasses should implement this method with the content of the test case. Typically, implementations will choose to catch and process all exceptions and error conditions they are looking for in the code they exercise but will let exceptions due to their own processing propagate.
      Overrides:
      runImpl in class AbstractTest
      Throws:
      Exception