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

org.testng.asserts.LoggingAssert Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.asserts;

import org.testng.collections.Lists;

import java.util.List;

/** Log the messages of all the assertions that get run. */
public class LoggingAssert extends Assertion {

  private List m_messages = Lists.newArrayList();

  @Override
  public void onBeforeAssert(IAssert a) {
    m_messages.add("Test:" + a.getMessage());
  }

  public List getMessages() {
    return m_messages;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy