|
|
HasProperty (JsonObject, character)
|
/** Asserts that a Json object has a particularly-named property (of any type).
@param JsonObject The JSON object being checked
@param character The name of the property being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|
|
|
IndexIsNull (JsonArray, integer)
|
/** Asserts that an array extent value is null
@param JsonArray The JSON object being checked
@param integer The index being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|
|
|
IndexIsType (JsonArray, integer, JsonDataTypeEnum)
|
/** Asserts that a JSON Array has a index of a particular type.
@param JsonArray The JSON object being checked
@param integer The index being checked
@param JsonDataTypeEnum The data type being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|
|
|
IndexNotNull (JsonArray, integer)
|
/** Asserts that an array extent value is null
@param JsonArray The JSON object being checked
@param integer The index being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|
|
|
PropertyIsNull (JsonObject, character)
|
/** Asserts that a the value of a property is null
@param JsonObject The JSON object being checked
@param character The name of the property being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|
|
|
PropertyIsType (JsonObject, character, JsonDataTypeEnum)
|
/** Asserts that a JSON Object has a particularly-named property of a
particular type.
@param JsonObject The JSON object being checked
@param character The name of the property being checked
@param JsonDataTypeEnum The data type being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|
|
|
PropertyNotNull (JsonObject, character)
|
/** Asserts that a the value of a property is not null
@param JsonObject The JSON object being checked
@param character The name of the property being checked
@throws AssertionFailedError Error thrown if the property does not exist */
|