Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.sun.xacml.test
Interface Test  view Test download Test.java

All Known Implementing Classes:
BasicGroupTest, BasicTest

public interface Test

Simple interface that defines what a single test does.


Method Summary
 java.lang.String getName()
          Returns the name of this test.
 boolean isErrorExpected()
          Returns whether an error is expected to happen (and is therefore a success case).
 boolean isExperimental()
          Returns whether or not this is an experimental test, and therefore not part of the required test cases.
 int run(java.lang.String testPrefix)
          Runs the test.
 

Method Detail

run

public int run(java.lang.String testPrefix)
Runs the test.


getName

public java.lang.String getName()
Returns the name of this test.


isErrorExpected

public boolean isErrorExpected()
Returns whether an error is expected to happen (and is therefore a success case).


isExperimental

public boolean isExperimental()
Returns whether or not this is an experimental test, and therefore not part of the required test cases.