blob: 65fb723d2c171ee6df755ca22243c1e4fbc254fa [file] [log] [blame]
package org.apache.maven.surefire.api.report;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* Describes a single entry for a test report
*
*/
public interface ReportEntry
{
/**
* The class name of the test
*
* @return A string with the class name
*/
String getSourceName();
/**
* Human readable {@link #getSourceName() test class}.
*
* @return source text
*/
String getSourceText();
/**
* The name of the test case
*
* @return A string describing the test case
*/
String getName();
/**
* Human readable {@link #getName() test case}.
*
* @return name text
*/
String getNameText();
/**
* The group/category of the testcase
*
* @return A string
*/
String getGroup();
/**
* The group/category of the testcase
*
* @return stack trace object
*/
StackTraceWriter getStackTraceWriter();
/**
* Gets the runtime for the item. Optional parameter. If the value is not set, it will be determined within
* the reporting subsystem. Some providers like to calculate this value themselves, and it gets the
* most accurate value.
* @return duration of a test in milli seconds
*/
Integer getElapsed();
/**
* Returns same value as {@link #getElapsed()} and fallbacks to {@code fallback} for <tt>null</tt> elapsed timed.
*
* @param fallback usually 0
* @return elapsed time if {@link #getElapsed()} is not null; otherwise returns {@code fallback}
*/
int getElapsed( int fallback );
/**
* A message relating to a non-successful termination.
* May be the "message" from an exception or the reason for a test being ignored
*
* @return A string that explains an anomaly
*/
String getMessage();
/**
* A source name of the test case together with the group or category (if any exists).
*
* @return A string with the test case name and group/category, or just the name.
*/
String getNameWithGroup();
/**
* A source text of the test case together with the group or category (if any exists).
*
* @return A string with the test case text and group/category, or just the source text.
*/
String getReportNameWithGroup();
}