A C D E F G H J L M N O P R S T V X

A

actual - Variable in class org.apache.commons.jelly.tags.junit.AssertEqualsTag
 
addTest(Test) - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
Adds a new Test to this suite
AssertEqualsTag - Class in org.apache.commons.jelly.tags.junit
Compares an actual object against an expected object and if they are different then the test will fail.
AssertEqualsTag() - Constructor for class org.apache.commons.jelly.tags.junit.AssertEqualsTag
 
AssertTag - Class in org.apache.commons.jelly.tags.junit
Performs an assertion that a given boolean expression, or XPath expression is true.
AssertTag() - Constructor for class org.apache.commons.jelly.tags.junit.AssertTag
 
AssertTagSupport - Class in org.apache.commons.jelly.tags.junit
The abstract base class of any assertion tag which is useful for implementation inheritence.
AssertTagSupport() - Constructor for class org.apache.commons.jelly.tags.junit.AssertTagSupport
 
AssertThrowsTag - Class in org.apache.commons.jelly.tags.junit
Runs its body and asserts that an exception is thrown by it.
AssertThrowsTag() - Constructor for class org.apache.commons.jelly.tags.junit.AssertThrowsTag
 

C

CaseTag - Class in org.apache.commons.jelly.tags.junit
Represents a single test case in a test suite; this tag is analagous to JUnit's TestCase class.
CaseTag() - Constructor for class org.apache.commons.jelly.tags.junit.CaseTag
 
cause - Variable in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
the underlying cause of the exception
classLoader - Variable in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
Sets the ClassLoader to be used when loading an exception class
columnNumber - Variable in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
the column number in the script of the error
createExpression(ExpressionFactory, TagScript, String, String) - Method in class org.apache.commons.jelly.tags.junit.JUnitTagLibrary
 
createResult(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.RunTag
Factory method to create a new TestResult to capture the output of the test cases
createSuite() - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
Factory method to create a new TestSuite
createTestListener(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.RunTag
Factory method to create a new TestListener to capture the output of the test cases
createTestSuite(Class, String) - Static method in class org.apache.commons.jelly.tags.junit.JellyTestSuite
Helper method to create a test suite from a file name on the class path in the package of the given class.
createTestSuite(URL) - Static method in class org.apache.commons.jelly.tags.junit.JellyTestSuite
Helper method to create a test suite from the given Jelly script

D

doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.AssertEqualsTag
 
doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.AssertTag
 
doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
 
doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.CaseTag
 
doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.FailTag
 
doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.RunTag
 
doTag(XMLOutput) - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
 

E

elementName - Variable in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
the tag name which caused the problem
expected - Variable in class org.apache.commons.jelly.tags.junit.AssertEqualsTag
 
expected - Variable in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
The class name (fully qualified) of the exception expected to be thrown by the body.

F

fail(String) - Method in class org.apache.commons.jelly.tags.junit.AssertTagSupport
Produces a failure assertion with the given message
fail(String, String) - Method in class org.apache.commons.jelly.tags.junit.AssertTagSupport
Produces a failure assertion with the given message and added detail.
failNotEquals(String, Object, Object, String) - Method in class org.apache.commons.jelly.tags.junit.AssertTagSupport
Produces a failure if the actual value was not equal to the expected value
FailTag - Class in org.apache.commons.jelly.tags.junit
This tag causes a failure message.
FailTag() - Constructor for class org.apache.commons.jelly.tags.junit.FailTag
 
fileName - Variable in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
the Jelly file which caused the problem

G

getCause() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getClassLoader() - Method in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
 
getColumnNumber() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getElementName() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getFileName() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getLineNumber() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getListener() - Method in class org.apache.commons.jelly.tags.junit.RunTag
Returns the listener.
getMessage() - Method in class org.apache.commons.jelly.tags.junit.FailTag
 
getMessage() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getName() - Method in class org.apache.commons.jelly.tags.junit.CaseTag
 
getName() - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
 
getReason() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
getResult() - Method in class org.apache.commons.jelly.tags.junit.RunTag
Returns the TestResult used to capture the output of the test.
getSuite() - Method in class org.apache.commons.jelly.tags.junit.CaseTag
Strategy method to find the corrent TestSuite to add a new Test case to
getSuite() - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
 
getTest() - Method in class org.apache.commons.jelly.tags.junit.RunTag
Returns the Test to be ran.
getThrowableClass() - Method in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
Returns the Class corresponding to the class specified by expected.

H

handleSAXException(SAXException) - Method in class org.apache.commons.jelly.tags.junit.RunTag
Handles SAX Exceptions

J

JellyAssertionFailedError - Error in org.apache.commons.jelly.tags.junit
JellyAssertionFailedError is a JUnit AssertionFailedError which is LocationAware so that it can include details of where in the JellyUnit test case that the failure occurred.
JellyAssertionFailedError() - Constructor for error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
JellyAssertionFailedError(String) - Constructor for error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
JellyAssertionFailedError(String, Throwable) - Constructor for error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
JellyAssertionFailedError(Throwable) - Constructor for error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
JellyTestSuite - Class in org.apache.commons.jelly.tags.junit
An abstract base class for creating a TestSuite via a Jelly script.
JellyTestSuite() - Constructor for class org.apache.commons.jelly.tags.junit.JellyTestSuite
 
JUnitTagLibrary - Class in org.apache.commons.jelly.tags.junit
Describes the Taglib.
JUnitTagLibrary() - Constructor for class org.apache.commons.jelly.tags.junit.JUnitTagLibrary
 

L

lineNumber - Variable in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
the line number in the script of the error
listener - Variable in class org.apache.commons.jelly.tags.junit.RunTag
 
log - Static variable in class org.apache.commons.jelly.tags.junit.AssertTag
The Log to which logging calls will be made.
log - Static variable in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
The Log to which logging calls will be made.
log - Static variable in class org.apache.commons.jelly.tags.junit.JellyTestSuite
The Log to which logging calls will be made.
log - Variable in class org.apache.commons.jelly.tags.junit.JUnitTagLibrary
The Log to which logging calls will be made.
log - Static variable in class org.apache.commons.jelly.tags.junit.RunTag
The Log to which logging calls will be made.

M

message - Variable in class org.apache.commons.jelly.tags.junit.FailTag
 

N

name - Variable in class org.apache.commons.jelly.tags.junit.CaseTag
 
name - Variable in class org.apache.commons.jelly.tags.junit.SuiteTag
the name of the test suite to create

O

org.apache.commons.jelly.tags.junit - package org.apache.commons.jelly.tags.junit
A collection of JUnit tags for performing unit tests written in Jelly script.

P

printStackTrace(PrintWriter) - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
printStackTrace(PrintStream) - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 
printStackTrace() - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
 

R

result - Variable in class org.apache.commons.jelly.tags.junit.RunTag
 
RunTag - Class in org.apache.commons.jelly.tags.junit
This tag will run the given Test which could be an individual TestCase or a TestSuite.
RunTag() - Constructor for class org.apache.commons.jelly.tags.junit.RunTag
 

S

setActual(Expression) - Method in class org.apache.commons.jelly.tags.junit.AssertEqualsTag
Sets the actual value which will be compared against the expected value.
setClassLoader(ClassLoader) - Method in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
Sets the class loader to be used to load the exception type
setColumnNumber(int) - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
Sets the column number of the tag
setElementName(String) - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
Sets the element name which caused the problem
setExpected(Expression) - Method in class org.apache.commons.jelly.tags.junit.AssertEqualsTag
Sets the expected value to be tested against
setExpected(String) - Method in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
Sets the class name of exception expected to be thrown by the body.
setFileName(String) - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
Sets the Jelly file which caused the problem
setLineNumber(int) - Method in error org.apache.commons.jelly.tags.junit.JellyAssertionFailedError
Sets the line number of the tag
setListener(TestListener) - Method in class org.apache.commons.jelly.tags.junit.RunTag
Sets the TestListener.to be used to format the output of running the unit test cases
setMessage(String) - Method in class org.apache.commons.jelly.tags.junit.FailTag
Sets the failure message.
setName(String) - Method in class org.apache.commons.jelly.tags.junit.CaseTag
Sets the name of this test case
setName(String) - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
Sets the name of this test suite
setResult(TestResult) - Method in class org.apache.commons.jelly.tags.junit.RunTag
Sets the JUnit TestResult used to capture the results of the tst
setTest(Expression) - Method in class org.apache.commons.jelly.tags.junit.AssertTag
Sets the boolean expression to evaluate.
setTest(Test) - Method in class org.apache.commons.jelly.tags.junit.RunTag
Sets the JUnit Test to run which could be an individual test or a TestSuite
setVar(String) - Method in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
Sets the variable name to define for this expression.
setVar(String) - Method in class org.apache.commons.jelly.tags.junit.SuiteTag
Sets the name of the test suite whichi is exported
setXpath(XPath) - Method in class org.apache.commons.jelly.tags.junit.AssertTag
Sets the boolean XPath expression to evaluate.
stackTraceToString(Throwable) - Method in class org.apache.commons.jelly.tags.junit.RunTag
 
suite - Variable in class org.apache.commons.jelly.tags.junit.SuiteTag
the test suite this tag created
SuiteTag - Class in org.apache.commons.jelly.tags.junit
Represents a collection of TestCases..
SuiteTag() - Constructor for class org.apache.commons.jelly.tags.junit.SuiteTag
 

T

test - Variable in class org.apache.commons.jelly.tags.junit.AssertTag
The expression to evaluate.
test - Variable in class org.apache.commons.jelly.tags.junit.RunTag
 

V

var - Variable in class org.apache.commons.jelly.tags.junit.AssertThrowsTag
The variable name to export the caught exception to.
var - Variable in class org.apache.commons.jelly.tags.junit.SuiteTag
the name of the variable of the test suite

X

xpath - Variable in class org.apache.commons.jelly.tags.junit.AssertTag
The XPath expression to evaluate

A C D E F G H J L M N O P R S T V X