matlab判断字符串包含字符串,确认字符串包含指定字符串

更新时间:2023-05-10 18:55:06 阅读: 评论:0

matlab判断字符串包含字符串,确认字符串包含指定字符串创建供交互测试的 TestCa 对象。
testCa = matlab.unittest.TestCa.forInteractiveU;
测试字符串中是否包含⼦字符串。
verifySubstring(testCa, 'SomeLongMessage', 'Long');
Interactive verification pasd.
展⽰⼤⼩写不同所造成的影响。
verifySubstring(testCa, 'SomeLongMessage', 'lonG');
Interactive verification failed.
---------------------
Framework Diagnostic:
---------------------
verifySubstring failed.
--> The value does not contain the substring.
Actual char:
SomeLongMessage
Expected Substring:
lonG
测试失败。
通过测试实际字符串中不包含的⼦字符串致使确认失败。
verifySubstring(testCa, 'SomeLongMessage', 'OtherMessage');
Interactive verification failed.
---------------------
Framework Diagnostic:
---------------------
verifySubstring failed.
--> The value does not contain the substring.
Actual char:
SomeLongMessage
Expected Substring:
OtherMessage
测试失败。
显⽰如果⼦字符串⽐实际字符串长,确认将失败。
verifySubstring(testCa, 'SomeLongMessage', 'SomeLongMessageThatIsLonger');
Interactive verification failed.
---------------------
Framework Diagnostic:
---------------------
verifySubstring failed.
--> The value does not contain the substring. Actual char:
SomeLongMessage
Expected Substring: SomeLongMessageThatIsLonger
测试失败。

本文发布于:2023-05-10 18:55:06,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/880130.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:字符串   包含   确认   测试   造成   影响
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图