Home | History | Annotate | Download | only in xml
      1 package org.testng.xml;
      2 
      3 public interface ISuiteParser extends IFileParser<XmlSuite> {
      4 
      5   boolean accept(String fileName);
      6 }
      7