All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.examples.randomizedrunner.reports.Test004SuiteOfNested Maven / Gradle / Ivy

Go to download

Simple use-case examples meant to be included in some end-user documentation if it's ever going to be written...

There is a newer version: 2.1.17
Show newest version
package com.carrotsearch.examples.randomizedrunner.reports;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

/**
 * A suite of nested test classes.
 */
@RunWith(Suite.class)
@SuiteClasses({
  Test004SuiteOfNested.Subclass1.class,
  Test004SuiteOfNested.Subclass2.class,
  Test004SuiteOfNested.Subclass3.class
})
public class Test004SuiteOfNested {
  public static class Subclass1 extends Test001AllStatuses {
  }

  public static class Subclass2 extends Subclass1 {
  }

  public static class Subclass3 extends Subclass1 {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy