Uses of Class
org.apache.anteater.test.BaseTask

Packages that use BaseTask
org.apache.anteater.test This package contains the top-level tasks and API that define the testing framework. 
org.apache.anteater.test.matchers This package contains implementations of matchers
org.apache.anteater.test.meta Classes that deal with metadata about a script or Anteater itself. 
 

Uses of BaseTask in org.apache.anteater.test
 

Subclasses of BaseTask in org.apache.anteater.test
 class ActionTask
          Common class used to represent the common functionality of running multiple matchers on: the received request, while in the HTTP servlet the HTTP response, after a request has been sent to a server.
 class ContentHandlerTask
          A superclass which can magically convert certain nested Task types into body text.
 class Deploy
          Task for deploying new web applications into the ServletContainer at runtime.
 class FileRequest
          Defines a request to return the contents of a file The file is read into the body of an HttpMessage object.
 class HttpRequest
          Defines an HTTP request.
 class Listener
          Starts listening for an incoming HTTP request.
 class Matcher
          A Matcher corresponds to a <match> element, and describes a set of tests that need to be applied on an object.
 class MatcherSet
          MatcherSet maintains a set of Matchers to be applied on an object.
 class MatcherTest
          Matches an object against another.
 class SendResponse
          Sends an HTTP response back in the servlet thread.
 class SOAPRequest
          Simple extension to HTTPRequest to predefine SOAP type requests.
 class Undeploy
          Task for undeploying applications from the ServletContainer at runtime.
 

Methods in org.apache.anteater.test with parameters of type BaseTask
 void ServletContainer.addContext(String path, String docBase, BaseTask task)
           
 void ServletContainer.removeContext(String path, BaseTask task)
           
 void Group.addTask(BaseTask task)
          Add a BaseTask, eg <httpRequest>, to the session.
 

Uses of BaseTask in org.apache.anteater.test.matchers
 

Subclasses of BaseTask in org.apache.anteater.test.matchers
 class Blob
          A binary object matcher.
 class ContentEquals
          Checks if the matchOn string is equal with another one.
 class Header
          Maintains an HTTP header.
 class Jing
          Matcher based on James Clark's Jing tool for validating XML documents against the Relax NG schema language.
 class Method
          Check the method (GET, POST etc.) in an incoming HTTP request.
 class Parameter
          Maintains and checks a single HTTP parameter.
 class Regexp
          Validates content against a regular expression.
 class ResponseCode
          Check the response code in the HTTP response.
 class Template
          A template matcher, that you can base new matchers on.
 class XPath
          Assuming that the body of the HTTP message is an XML document, matches it using XPath.
 

Uses of BaseTask in org.apache.anteater.test.meta
 

Subclasses of BaseTask in org.apache.anteater.test.meta
 class CheckUses
          Anteater Task that lets a script explicitly indicate where they want the features to be checked.
 



Ant Functional Tester -- see Project home page for details