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

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

There is a newer version: 7.10.2
Show newest version
package org.testng.internal;

/**
 * A class that contains the expected exceptions and the message regular expression.
 * @author cbeust
 */
public class ExpectedExceptionsHolder {
  Class[] expectedClasses;
  String messageRegExp;

  public ExpectedExceptionsHolder(Class[] expectedClasses, String messageRegExp) {
    this.expectedClasses = expectedClasses;
    this.messageRegExp = messageRegExp;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy