Package | Description |
---|---|
org.apache.commons.jelly.tags.junit |
A collection of JUnit tags for
performing unit tests written in Jelly script.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AssertTagSupport.assertEquals(boolean expected,
boolean actual) |
protected void |
AssertTagSupport.assertEquals(byte expected,
byte actual) |
protected void |
AssertTagSupport.assertEquals(char expected,
char actual) |
protected void |
AssertTagSupport.assertEquals(double expected,
double actual) |
protected void |
AssertTagSupport.assertEquals(float expected,
float actual) |
protected void |
AssertTagSupport.assertEquals(int expected,
int actual) |
protected void |
AssertTagSupport.assertEquals(long expected,
long actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.Object expected,
java.lang.Object actual) |
protected void |
AssertTagSupport.assertEquals(short expected,
short actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
boolean expected,
boolean actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
byte expected,
byte actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
char expected,
char actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
double expected,
double actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
float expected,
float actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
int expected,
int actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
long expected,
long actual) |
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
Fail if !expected.equals(actual).
|
protected void |
AssertTagSupport.assertEquals(java.lang.String message,
short expected,
short actual) |
protected void |
AssertTagSupport.assertFalse(boolean actual)
Fail if actual is true
|
protected void |
AssertTagSupport.assertFalse(java.lang.String message,
boolean actual)
Fail if actual is true
|
protected void |
AssertTagSupport.assertNotSame(java.lang.Object expected,
java.lang.Object actual) |
protected void |
AssertTagSupport.assertNotSame(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
Fail if expected == actual.
|
protected void |
AssertTagSupport.assertSame(java.lang.Object expected,
java.lang.Object actual) |
protected void |
AssertTagSupport.assertSame(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
Fail if expected != actual.
|
protected void |
AssertTagSupport.assertTrue(boolean actual)
Fail if actual is not true
|
protected void |
AssertTagSupport.assertTrue(java.lang.String message,
boolean actual)
Fail if actual is not true
|
protected void |
AssertTagSupport.fail()
Produces a failure assertion with a default message
|
protected void |
AssertTagSupport.fail(java.lang.String message)
Produces a failure assertion with the given message
|
protected void |
AssertTagSupport.fail(java.lang.String message,
java.lang.String detail)
Produces a failure assertion with the given message and added detail.
|
protected void |
AssertTagSupport.failNotEquals(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual,
java.lang.String expressions)
Produces a failure if the actual value was not equal to the expected value
|
Copyright © 2014. All Rights Reserved.