~ubuntu-branches/ubuntu/trusty/testng/trusty-proposed

« back to all changes in this revision

Viewing changes to src/main/org/testng/ITestResult.java

  • Committer: Bazaar Package Importer
  • Author(s): Marcus Better
  • Date: 2009-07-23 12:11:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090723121117-k1so370589zvpef2
* Changed section to "java".
* debian/rules: Make it work with debhelper 7.3.5. (Closes: #538016)
* Use qdox 1.9 and add a patch for the API changes. Thanks to Ludovic
  Claude.
* debian/control: Bump policy version to 3.8.2.
* debian/control: Build with default-jdk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package org.testng;
2
2
 
3
 
import java.io.Serializable;
4
3
 
5
4
/**
6
5
 * This class describes the result of a test.
10
9
 * @version $Revision$, $Date$
11
10
 * 
12
11
 */
13
 
public interface ITestResult extends Serializable {
 
12
public interface ITestResult extends IAttributes, Comparable<ITestResult> {
14
13
  
15
14
  //
16
15
  // Test status
79
78
   */
80
79
  public String getHost();
81
80
 
 
81
  /**
 
82
   * The instance on which this method was run.
 
83
   */
 
84
  public Object getInstance();
 
85
 
82
86
}