代码搜索:Testing

找到约 10,000 项符合「Testing」的源代码

代码结果 10,000
www.eeworm.com/read/326095/3475765

java stringsorttest.java

//: StringSortTest.java // Testing the generic sorting Vector //实现比较大小用的接口 import java.util.*; public class StringSortTest { static class StringCompare implements Compare { public bool
www.eeworm.com/read/323581/3513933

tcl slistbox.tcl

proc About {} { return "Testing ScrolledListBox" } proc Test {} { set w [tixScrolledListBox .listbox] pack $w foreach item {{1 1} 2 3 4 5 6} { $w subwidget listbox insert end $item
www.eeworm.com/read/321483/3533529

t bigrat.t

#!/usr/bin/perl -w use strict; use Test; BEGIN { $| = 1; chdir 't' if -d 't'; unshift @INC, '../lib'; # for running manually plan tests => 193; } # basic testing of Math::BigRat use M
www.eeworm.com/read/321483/3533532

t requirer.t

#!/usr/bin/perl -w # check that simple requiring BigRat works use strict; use Test::More; BEGIN { $| = 1; # to locate the testing files my $location = $0; $location =~ s/requirer.t//i; if
www.eeworm.com/read/321483/3533574

t require.t

#!/usr/bin/perl -w # check that simple requiring BigInt works use strict; use Test; BEGIN { $| = 1; # to locate the testing files my $location = $0; $location =~ s/require.t//i; if ($ENV{
www.eeworm.com/read/321483/3533745

t plan_skip_all.t

BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = '../lib'; } } use Test::More; plan skip_all => 'Just testing plan & skip_all'; fail('We should never get here');
www.eeworm.com/read/321483/3533820

t 500_ping_icmp.t

# Test to perform icmp protocol testing. # Root access is required. BEGIN { unless (eval "require Socket") { print "1..0 \# Skip: no Socket\n"; exit; } } use Test; use Net::Ping; plan te
www.eeworm.com/read/321483/3533981

t 01_use.t

use Test::More 'no_plan'; use strict; my $Class = 'Log::Message::Simple'; use_ok( $Class ); diag( "Testing $Class version " . $Class->VERSION ) unless $ENV{PERL_CORE};
www.eeworm.com/read/321483/3534844

t fcntl.t

#!./perl BEGIN { chdir 't' if -d 't'; @INC = '../lib'; } # A modest test: exercises only O_WRONLY, O_CREAT, and O_RDONLY. # Have to be modest to be portable: could possibly extend testing #
www.eeworm.com/read/321483/3535613

changes

Revision history for Perl extension Digest::SHA. 5.45 Tue Jun 26 02:36:00 MST 2007 - extended portability to earlier Perls -- works on Perl 5.003 and later -- thanks to Jim Doble for testing on