Annotation Type FixtureFactory


  • @Retention(RUNTIME)
    @Target(TYPE)
    public @interface FixtureFactory
    A fixture factory can be used to customize fixture instance creation. This interface links FixtureInstanceFactorys to their respective Fixture classes.
    Author:
    Rene Schneider - initial API and implementation
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.Class<? extends FixtureInstanceFactory<?>> value
      The factory class.
    • Element Detail

      • value

        java.lang.Class<? extends FixtureInstanceFactory<?>> value
        The factory class. This class has to have a no-arg constructor and will be instantiated exactly once.
        Returns: