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

org.testng.internal.Dynamic Maven / Gradle / Ivy

There is a newer version: 7.10.2
Show newest version
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