?? test_util.pl
字號:
#!/usr/bin/perl# (C) 2007 Jelmer Vernooij <jelmer@samba.org># Published under the GNU General Public Licenseuse strict;use Test::More tests => 6;use FindBin qw($RealBin);use lib "$RealBin";use Util qw(test_warnings test_errors);use Parse::Pidl qw(warning error);test_warnings("", sub {});test_warnings("x:1: msg\n", sub { warning({FILE => "x", LINE => 1}, "msg"); });test_warnings("", sub {});test_errors("", sub {});test_errors("x:1: msg\n", sub { error({FILE => "x", LINE => 1}, "msg"); });test_errors("", sub {});
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -