代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/290380/8486719
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/290380/8486725
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/290185/8498509
java practical quiz 5.testathletescores.java
import java.io.*;
/**
* Test driver for class AthleteScores.
*
* @author Neil
* @version 1.0.0
*/
public class TestAthleteScores {
/* Standard output stream */
privat
www.eeworm.com/read/289184/8569771
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/289184/8569778
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/288110/8652485
txt readme.txt
grinder.jar - The Grinder (2.6.5) used for load testing Java classes
httpunit.jar - HttpUnit used for functional testing of web site
Tidy.jar- required by HttpUnit
junit.jar - JUnit 3.7. Used i
www.eeworm.com/read/286953/8736157
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/286953/8736163
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/429452/8807873
java practical quiz 5.testathletescores.java
import java.io.*;
/**
* Test driver for class AthleteScores.
*
* @author Neil
* @version 1.0.0
*/
public class TestAthleteScores {
/* Standard output stream */
privat
www.eeworm.com/read/187002/8885176
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));