Here you can find the source of assertClassExists(String className)
public static void assertClassExists(String className)
//package com.java2s; // This software is released under the Apache License 2.0. public class Main { public static void assertClassExists(String className) { try {/*from w w w.j a v a 2 s . c om*/ Class.forName(className); } catch (ClassNotFoundException e) { throw new AssertionError("Expected a class to exists, but it did not: " + className, e); } } }