Code coverage report for src/Common/I18N/Messages.js

Statements: 100% (11 / 11)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (11 / 11)      Ignored: none     

All files » src/Common/I18N/ » Messages.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86    1                 1               1                 1                 1                 1                 1                 1                 1                 1   1  
"use strict";
 
var Messages = {};
 
/**
 *
 * Invalid value
 *
 * @type {String}
 *
 */
Messages.VALIDATION_INVALID_VALUE = "<%= value %> is invalid.";
 
/**
 *
 * Required value
 *
 * @type {String}
 */
Messages.VALIDATION_REQUIRED = "Value is required.";
 
/**
 *
 * Array expected
 *
 * @type {String}
 *
 */
Messages.VALIDATION_TYPE = "'<%= expected %>' was expected but found '<%= value %>' instead.";
 
/**
 *
 * Max exceed
 *
 * @type {String}
 *
 */
Messages.VALIDATION_MAX = "The maximum value allowed is <%= value %>.";
 
/**
 *
 * Min exceed
 *
 * @type {String}
 *
 */
Messages.VALIDATION_MIN = "The minimum value allowed is <%= value %>.";
 
/**
 *
 * Min exceed
 *
 * @type {String}
 *
 */
Messages.REGEXP = "Regular expression '<%= value %>' doesn't match.";
 
/**
 *
 * Invalid List lenght
 *
 * @type {String}
 *
 */
Messages.VALIDATION_INVALID_LIST_LENGTH = "Expected list with <%= expected %> items but found <%= value %>.";
 
/**
 *
 * Invalid List
 *
 * @type {String}
 *
 */
Messages.VALIDATION_INVALID_LIST_LENGTH_MULTIPLE_OF = "Expected list length to be multiple of <%= expected %> but found length of <%= value %>.";
 
/**
 *
 * Invalid List
 *
 * @type {String}
 *
 */
Messages.VALIDATION_INSTANCEOF = "Expected instance of '<%= value %>'.";
 
module.exports = Messages;