public class

ErrorCollectionAssert

extends Object
java.lang.Object
   ↳ com.atlassian.jira.util.ErrorCollectionAssert

Class Overview

Provides methods to help unit tests make assertions about ErrorCollection objects.

Summary

Public Constructors
ErrorCollectionAssert()
Public Methods
static void assert1ErrorMessage(ErrorCollection errorCollection, String expectedErrorMessage)
Asserts that the given ErrorCollection contains only the given error message.
static void assert1FieldError(ErrorCollection errorCollection, String fieldName, String expectedErrorMessage)
Asserts that the given ErrorCollection contains only the given field-specific error.
static void assertFieldError(ErrorCollection errorCollection, String fieldName, String expectedErrorMessage)
Asserts that the given ErrorCollection contains the given field-specific error.
static void assertNoErrors(ErrorCollection errorCollection)
Asserts that the given ErrorCollection has no errors.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ErrorCollectionAssert ()

Public Methods

public static void assert1ErrorMessage (ErrorCollection errorCollection, String expectedErrorMessage)

Asserts that the given ErrorCollection contains only the given error message.

Parameters
errorCollection ErrorCollection under test.
expectedErrorMessage The expected error message.

public static void assert1FieldError (ErrorCollection errorCollection, String fieldName, String expectedErrorMessage)

Asserts that the given ErrorCollection contains only the given field-specific error.

Parameters
errorCollection ErrorCollection under test.
fieldName The field name that we expected the error for.
expectedErrorMessage The expected error message.

public static void assertFieldError (ErrorCollection errorCollection, String fieldName, String expectedErrorMessage)

Asserts that the given ErrorCollection contains the given field-specific error.

Parameters
errorCollection ErrorCollection under test.
fieldName The field name that we expected the error for.
expectedErrorMessage The expected error message.

public static void assertNoErrors (ErrorCollection errorCollection)

Asserts that the given ErrorCollection has no errors.

Parameters
errorCollection ErrorCollection under test.