~ubuntu-branches/ubuntu/raring/testng/raring

« back to all changes in this revision

Viewing changes to src/main/org/testng/ISuite.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:
13
13
 * @author Cedric Beust, Aug 6, 2004
14
14
 *
15
15
 */
16
 
public interface ISuite {
 
16
public interface ISuite extends IAttributes {
17
17
 
18
18
  /**
19
19
   * @return the name of this suite.
91
91
   * @return The representation of the current XML suite file.
92
92
   */
93
93
  public XmlSuite getXmlSuite();
 
94
 
94
95
}