代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/109636/6173897
java wasrun.java
package junit.tests;
import junit.framework.*;
/**
* A helper test case for testing whether the testing method
* is run.
*/
public class WasRun extends TestCase {
public boolean fWasRun
www.eeworm.com/read/109636/6173923
java failure.java
package junit.tests.framework;
import junit.framework.*;
/**
* A test case testing the testing framework.
*
*/
public class Failure extends TestCase {
public void runTest() {
fail();
}
}
www.eeworm.com/read/109636/6173929
java success.java
package junit.tests.framework;
import junit.framework.*;
/**
* A test case testing the testing framework.
*
*/
public class Success extends TestCase {
public void runTest() {
}
public void
www.eeworm.com/read/109010/6180206
properties messageresources_fr.properties
#
# Resources for testing tag.
#
double.pattern=#\u00a0000,00
locale.en=
locale.fr=(*)
www.eeworm.com/read/109010/6180209
properties messageresources.properties
#
# Resources for testing tag.
#
errors.header=
errors.footer=
errors.prefix=
errors.suffix=
property1error1=Property 1, Error 1
property2err
www.eeworm.com/read/108103/6186003
cpp file.cpp
/**************************}
{ FastScript v1.0 }
{ Files demo }
{**************************/
{
TFileStream fs = new TFileStream("test.txt", fmCreate);
String s = "
www.eeworm.com/read/108103/6186010
js file.js
//**************************}
//{ FastScript v1.0 }
//{ Files demo }
//{**************************/
var fs = new TFileStream("test.txt", fmCreate);
var s = "Testi
www.eeworm.com/read/108103/6186029
vb file.vb
' FastScript v1.0
' Files demo
dim fs, s
fs = new TFileStream("test.txt", fmCreate)
s = "Testing file..."
fs.Write(s, Length(s))
fs.Write(#13#10, 2)
s
www.eeworm.com/read/108103/6186058
pas file.pas
{**************************}
{ FastScript v1.0 }
{ Files demo }
{**************************}
var
fs: TFileStream;
s: String;
begin
fs := TFileStream.Create('test
www.eeworm.com/read/108102/6186219
java client.java
package com.javapatterns.iterator.badexample;
import java.util.Hashtable;
import java.util.Vector;
public class Client
{
private Vector v = new Vector();
private Hashtable ht = new H