goog.labs.testing.StringContainsInOrderMatcherProvided Bygoog.labs.testing.StringContainsInOrderMatcherAll Implemented Interfacesgoog.labs.testing.MatcherAlias forgoog.labs.testing.stringmatcher.StringContainsInOrderMatcherThe StringContainsInOrdermatcher. new StringContainsInOrderMatcher( values )Parametersvalues(Array<string>|null)The expected string values. VIEW SOURCEInstance Methodsexpand_morethis.describe( value, opt_description ) → stringDescribes why the matcher failed. Specified bygoog.labs.testing.MatcherParametersvalue*The value that didn't match. opt_descriptionstring=A partial description to which the reason will be appended. ReturnsstringDescription of why the matcher failed. VIEW SOURCEexpand_morethis.matches( value ) → booleanDetermines if input string contains, in order, the expected array of strings. Specified bygoog.labs.testing.MatcherParametersvalue*The object to match. ReturnsbooleanWhether the input value matches this matcher. VIEW SOURCEexpand_morethis.toString() → stringParametersNone.ReturnsstringVIEW SOURCEStatic Functionsexpand_moreStringContainsInOrderMatcher.stringContainsInOrder( values ) → goog.labs.testing.stringmatcher.StringContainsInOrderMatcherMatches a string that contains the given strings in order. Parametersvalues(Array<string>|null)The expected value. Returnsgoog.labs.testing.stringmatcher.StringContainsInOrderMatcherA StringContainsInOrderMatcher. VIEW SOURCE