matlab.uitest.unlock
解锁被 App 测试框架锁定的图窗
说明
示例
解锁图窗
创建一个从 matlab.uitest.TestCase
派生的基于类的单元测试,并在其中包含 keyboard
语句。
classdef SimpleUITest < matlab.uitest.TestCase methods (Test) function test1(testCase) fig = uifigure; testCase.addTeardown(@delete,fig) button = uibutton(fig); keyboard; end end end
运行测试。MATLAB® 在执行 keyboard
命令时进入调试模式。图窗被锁定,您无法以交互方式按下按钮。
runtests("SimpleUITest")
在调试模式下解锁图窗。之后便可以与按钮进行交互了。
K>> matlab.uitest.unlock(fig);
继续执行测试。测试完成并在拆解过程中关闭图窗。
K>> dbcont
输入参数
版本历史记录
在 R2018a 中推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)