test_util.pl
来自「samba最新软件」· PL 代码 · 共 22 行
PL
22 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?