![JAR search and dependency download from the Maven repository](/logo.png)
de.tsl2.nano.autotest.Construction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.autotest Show documentation
Show all versions of tsl2.nano.autotest Show documentation
Generates unit tests from code or annotated methods
The newest version!
package de.tsl2.nano.autotest;
import java.lang.reflect.Constructor;
public class Construction {
public transient V instance;
public Constructor constructor;
public Object[] parameter;
public Construction(V instance) {
super();
this.instance = instance;
}
public Construction(V instance, Constructor constructor, Object[] parameter) {
this.instance = instance;
this.constructor = constructor;
this.parameter = parameter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy