代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3280952
c gnuc89-pedantic.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do preprocess } */
/* { dg-options "-std=gnu89 -pedantic" } */
/* This file is for testing the preprocessor in -std=gnu89 -pedantic m
www.eeworm.com/read/339586/3297357
spec cppunit.spec
Name: cppunit
Version: 1.12.0
Release: 2
Summary: C++ Port of JUnit Testing Framework
License: LGPL
Group: Development/Libraries
Url: http://cppunit.sourceforge.net/
Source: ftp://download.sourceforg
www.eeworm.com/read/339586/3297862
ac ac_check_junit.ac
dnl @synopsis AC_CHECK_JUNIT
dnl
dnl AC_CHECK_JUNIT tests the availability of the Junit testing
dnl framework, and set some variables for conditional compilation
dnl of the test suite by automake.
dnl
www.eeworm.com/read/339266/3310493
java teststream.java
//: com:bruceeckel:simpletest:TestStream.java
// Simple utility for testing program output. Intercepts
// System.out to print both to the console and a buffer.
// From 'Thinking in Java, 3rd ed.' (
www.eeworm.com/read/333060/3390857
java teststream.java
//: com:bruceeckel:simpletest:TestStream.java
// Simple utility for testing program output. Intercepts
// System.out to print both to the console and a buffer.
// From 'Thinking in Java, 3rd ed.' (
www.eeworm.com/read/329537/3430766
c on-off-1.c
/* Testing *INDENT-ON* and *INDENT-OFF* controls comments */
// *INDENT-OFF*
// *INDENT-ON*
main(int argc, char **argv)
{ char *foo;
puts(foo);
}
/* *INDENT-OFF* */
grunt(int argc,
char **
www.eeworm.com/read/329537/3430830
c on-off-1.c
/* Testing *INDENT-ON* and *INDENT-OFF* controls comments */
// *INDENT-OFF*
// *INDENT-ON*
main (int argc, char **argv)
{
char *foo;
puts (foo);
}
/* *INDENT-OFF* */
grunt(int argc,
char
www.eeworm.com/read/329537/3430961
c on-off-2.c
/* Testing *INDENT-ON* and *INDENT-OFF* controls comments */
// *INDENT-ON*
// *INDENT-OFF*
main(int argc, char **argv)
{ char *foo;
puts(foo);
}
grunt(int argc,
char **argv
{ char *fo
www.eeworm.com/read/329537/3431011
c on-off-2.c
/* Testing *INDENT-ON* and *INDENT-OFF* controls comments */
// *INDENT-ON*
// *INDENT-OFF*
main(int argc, char **argv)
{ char *foo;
puts(foo);
}
grunt(int argc,
char **argv
{ char *fo
www.eeworm.com/read/326711/3469854
cpp fig26_11.cpp
// Fig. 26.11: Fig26_11.cpp
// Creating and testing user-defined, nonparameterized
// stream manipulators.
#include
using std::ostream;
using std::cout;
using std::flush;
// bell