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

com.github.dakusui.scriptiveunit.loaders.IndexedTestCase Maven / Gradle / Ivy

package com.github.dakusui.scriptiveunit.loaders;

import com.github.dakusui.jcunit.core.tuples.Tuple;
import com.github.dakusui.jcunit.framework.TestCase;

public class IndexedTestCase extends TestCase {
  private final int index;

  IndexedTestCase(int index, TestCase testCase) {
    this(index, testCase.getCategory(), testCase.getTuple());
  }

  public int getIndex() {
    return this.index;
  }

  private IndexedTestCase(int index, Category category, Tuple tuple) {
    super(category, tuple);
    this.index = index;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy