
utilities.Classloader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AUTOTESTIMATIC-JAVA Show documentation
Show all versions of AUTOTESTIMATIC-JAVA Show documentation
An open-source Selenium Java-based Test automation Framework that allows you to perform multiple actions
to test a web application's functionality, behaviour, which provides easy to use syntax,
and easy to set up environment according to the needed requirements for testing
package utilities;
import org.reflections.Reflections;
import org.reflections.scanners.Scanners;
import java.util.*;
public class Classloader {
private Classloader(){
}
public static Set> findAllClasses(String packageName) {
Reflections reflections = new Reflections(packageName,Scanners.SubTypes.filterResultsBy(s -> true));
return new HashSet<>(reflections.getSubTypesOf(Object.class));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy