Main Content

matlab.unittest.constraints.EndsWithSubstring 类

命名空间: matlab.unittest.constraints
超类: matlab.unittest.constraints.BooleanConstraint

测试值是否以指定的字符串结尾

描述

matlab.unittest.constraints.EndsWithSubstring 类提供一个约束来测试值是否以指定的字符串结尾。

创建对象

描述

示例

c = matlab.unittest.constraints.EndsWithSubstring(suffix) 创建一个约束来测试值是否以指定的字符串结尾。以 suffix 结尾的字符串标量或字符向量满足该约束。

示例

c = matlab.unittest.constraints.EndsWithSubstring(suffix,Name,Value) 使用一个或多个名称-值参量设置其他选项。例如,c = matlab.unittest.constraints.EndsWithSubstring(suffix,"IgnoringCase",true) 创建一个不区分大小写的约束。

输入参量

全部展开

预期的后缀,指定为非空字符串标量或字符向量。

此参量设置 Suffix 属性。

名称-值参数

将可选的参量对组指定为 Name1=Value1,...,NameN=ValueN,其中 Name 是参量名称,Value 是对应的值。名称-值参量必须出现在其他参量之后,但参量对组的顺序无关紧要。

示例: c = matlab.unittest.constraints.EndsWithSubstring(suffix,IgnoringCase=true)

在 R2021a 之前,使用逗号分隔每个名称和值,并用引号将 Name 引起来。

示例: c = matlab.unittest.constraints.EndsWithSubstring(suffix,"IgnoringCase",true)

是否忽略大小写,指定为数值或逻辑值 0 (false) 或 1 (true)。默认情况下,约束区分大小写。

此参量设置 IgnoreCase 属性。

是否忽略空白,指定为数值或逻辑值 0 (false) 或 1 (true)。默认情况下,约束区分空白字符。空白字符包括空格 (' ')、换页符 ('\f')、换行符 ('\n')、回车符 ('\r')、水平制表符 ('\t') 和垂直制表符 ('\v')。

此参量设置 IgnoreWhitespace 属性。

注意

IgnoringWhitespacetrue 时,suffix 必须包含至少一个非空白字符。

属性

全部展开

预期的后缀,以字符串标量或字符向量形式返回。

此属性由 suffix 输入参量设置。

属性:

GetAccess
public
SetAccess
immutable

是否忽略大小写,以逻辑值 0 (false) 或 1 (true) 形式返回。默认情况下,约束区分大小写。

此属性由 IgnoringCase 名称-值参量设置。

属性:

GetAccess
public
SetAccess
private

是否忽略空白,以逻辑值 0 (false) 或 1 (true) 形式返回。默认情况下,约束区分空白字符。

此属性由 IgnoringWhitespace 名称-值参量设置。

属性:

GetAccess
public
SetAccess
private

示例

全部折叠

使用 EndsWithSubstring 约束测试字符串是否具有指定的后缀。

首先,导入此示例中使用的类。

import matlab.unittest.TestCase
import matlab.unittest.constraints.EndsWithSubstring

创建一个供交互测试的测试用例。

testCase = TestCase.forInteractiveUse;

指定实际值。

str = "This Is One Long Message!";

验证 str"Message!" 结尾。

testCase.verifyThat(str,EndsWithSubstring("Message!"))
Verification passed.

测试 str 是否以子字符串 "Age!" 结尾。测试失败,因为约束区分大小写。

testCase.verifyThat(str,EndsWithSubstring("Age!"))
Verification failed.
    ---------------------
    Framework Diagnostic:
    ---------------------
    EndsWithSubstring failed.
    --> The value does not end with the supplied suffix.
    
    Actual Value:
        "This Is One Long Message!"
    Expected Suffix:
        "Age!"

测试 str 是否以子字符串 "longmessage!" 结尾。要使测试通过,请忽略大小写和空白字符。

testCase.verifyThat(str,EndsWithSubstring("longmessage!", ...
    "IgnoringCase",true,"IgnoringWhitespace",true))
Verification passed.

验证 str 不以 "Long" 结尾。

testCase.verifyThat(str,~EndsWithSubstring("Long"))
Verification passed.

版本历史记录

在 R2013a 中推出