com.atlassian.jira.util
Class ErrorCollectionAssert

java.lang.Object
  extended by com.atlassian.jira.util.ErrorCollectionAssert

public class ErrorCollectionAssert
extends Object

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

Since:
v3.13

Constructor Summary
ErrorCollectionAssert()
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ErrorCollectionAssert

public ErrorCollectionAssert()
Method Detail

assert1ErrorMessage

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.

assert1FieldError

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.

assertFieldError

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.

assertNoErrors

public static void assertNoErrors(ErrorCollection errorCollection)
Asserts that the given ErrorCollection has no errors.

Parameters:
errorCollection - ErrorCollection under test.


Copyright © 2002-2013 Atlassian. All Rights Reserved.