org.testng.internal.Dynamic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal;
/**
* Determine the availability of certain jar files at runtime.
*/
public class Dynamic {
public static boolean hasBsh() {
try {
Class.forName("bsh.Interpreter");
return true;
} catch (ClassNotFoundException e) {
return false;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy