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

net.sf.cotta.test.assertion.ExceptionAssert Maven / Gradle / Ivy

The newest version!
package net.sf.cotta.test.assertion;

public class ExceptionAssert extends BaseAssert {
  public ExceptionAssert(Throwable value) {
    super(value);
  }

  @SuppressWarnings({"ThrowableResultOfMethodCallIgnored"})
  public StringAssert message() {
    return new StringAssert(value().getMessage());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy