aboutsummaryrefslogtreecommitdiffstats
path: root/docs/2_Architecture_Guides/1_Introduction/AGL Requirements Specifications.pdf
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-12-18 16:11:24 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2025-01-02 21:35:23 +0000
commit7a826d980c35816a17b5aab05f612f8be46fa8ea (patch)
tree24b27ee67f36297798fa449978fa7cc7fd87b059 /docs/2_Architecture_Guides/1_Introduction/AGL Requirements Specifications.pdf
parent586e3623181dd42b8a3b3cc2f10a0187fce87c20 (diff)
Documentation: Update build instructions for all boards.ricefish_18.0.5ricefish_18.0.4ricefish/18.0.5ricefish/18.0.418.0.518.0.4ricefish
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I7d0e38f45a9657d6627bc3058239af9df64c985c Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/30686
Diffstat (limited to 'docs/2_Architecture_Guides/1_Introduction/AGL Requirements Specifications.pdf')
0 files changed, 0 insertions, 0 deletions
0DD; font-weight: bold } /* Literal.Number.Integer.Long */
# String assertions

Assertions related to string and patterns.

* **_AFT.assertStrContains(str, sub[, useRe])**

    Assert that a string contains the given substring or pattern.

    By default, substring is searched in the string. If useRe is provided and is
    true, sub is treated as a pattern which is searched inside the string str.

* **_AFT.assertStrIContains(str, sub)**

    Assert that a string contains the given substring, irrespective of the case.

    Not that unlike assertStrcontains(), you can not search for a pattern.

* **_AFT.assertNotStrContains(str, sub, useRe)**

    Assert that a string does not contain a given substring or pattern.

    By default, substring is searched in the string. If useRe is provided and is
    true, sub is treated as a pattern which is searched inside the string str.

* **_AFT.assertNotStrIContains(str, sub)**

    Assert that a string does not contain the given substring, irrespective of
    the case.

    Not that unlike assertNotStrcontains(), you can not search for a pattern.

* **_AFT.assertStrMatches(str, pattern[, start[, final]])**

    Assert that a string matches the full pattern pattern.

    If start and final are not provided or are nil, the pattern must match the
    full string, from start to end. The functions allows to specify the expected
    start and end position of the pattern in the string.