]> granicus.if.org Git - check/commitdiff
* s/unit test/unit testing/ when used as a verb.
authorcpickett <cpickett@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 16 Jan 2007 21:57:52 +0000 (21:57 +0000)
committercpickett <cpickett@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Tue, 16 Jan 2007 21:57:52 +0000 (21:57 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@407 64e312b2-a51f-0410-8e61-82d0ca0eb02a

README
TODO
doc/check.texi
index.html

diff --git a/README b/README
index 49908b00bf682cb9964d0bea61cb04c29d6e9320..0bfee96805d4b58c5a1ed320fcfed3f8894edf90 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
 About Check
 -----------
 
-Check is a unit test framework for C. It features a simple interface
+Check is a unit testing framework for C. It features a simple interface
 for defining unit tests, putting little in the way of the
 developer. Tests are run in a separate address space, so Check can
 catch both assertion failures and code errors that cause segmentation
diff --git a/TODO b/TODO
index ebb56a539ce06ccd0e1315ab15446c0c219337c5..ea5b2044ab7a448fa5361f14486803c74fd999cc 100644 (file)
--- a/TODO
+++ b/TODO
@@ -111,7 +111,7 @@ Unit test writing
 [     ] * Allow unit tests to write to the log
 [     ] * Allow unit tests that expect output (see stdout logging above) (but
           maybe perl/sh/expect/dejagnu are better tools)
-[     ] * Autoproduce unit test framework from header files
+[     ] * Autoproduce unit testing framework from header files
 [     ] * Count the number of START_TEST macros and check that each function
           is added to some suite; issue a warning message otherwise.  Maybe the
          best way to do this is to put each function onto a list or
index 5b83d004f778e93c0dc3f27a196aaea743bd461b..123cd00af0aa0e7a9db5ce9e89d2b1eea6583752 100644 (file)
@@ -11,7 +11,7 @@
 @copying
 This manual is for Check
 (version @value{VERSION}, @value{UPDATED}),
-a unit test framework for C programs.
+a unit testing framework for C.
 
 Copyright @copyright{} 2001--2006 Arien Malec, Chris Pickett, Fredrik
 Hugosson, and Robert Lemmen.
@@ -33,7 +33,7 @@ entitled ``@acronym{GNU} Free Documentation License.''
 
 @titlepage
 @title Check
-@subtitle A Unit Test Framework for C
+@subtitle A Unit Testing Framework for C
 @subtitle for version @value{VERSION}, @value{UPDATED}
 @author Arien Malec 
 @author Chris Pickett
@@ -234,7 +234,7 @@ In early development.  See the @uref{http://cunit.sourceforge.net,
 CUnit homepage}.
 
 @item CppUnit
-The premier unit test framework for C++; you can also use it to test C
+The premier unit testing framework for C++; you can also use it to test C
 code.  It is stable, actively developed, and has a GUI interface.  The
 primary reasons not to use CppUnit for C are first that it is quite
 big, and second you have to write your tests in C++, which means you
@@ -267,7 +267,7 @@ it probably wouldn't be hard to add that to frameworks without that
 feature).  Try 'em all out: adapt this tutorial to use all of the
 frameworks above, and use whichever you like.  Contribute, spread the
 word, and make one a standard.  Languages such as Java and Python are
-fortunate to have standard unit test frameworks; it would be desirable
+fortunate to have standard unit testing frameworks; it would be desirable
 that C have one as well.
 
 @node Tutorial, Advanced Features, Unit Testing in C, Top
index 32d7ba51fca36b76c2b5fb63939c5c1ee6619071..a2f5c17906bfebade573476e583bb19a54160829 100644 (file)
@@ -1,11 +1,11 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
 <html>
 <head>
-  <title>Check: A unit test framework for C</title>
+  <title>Check: A unit testing framework for C</title>
 </head>
 <body>
-<h1>Check: A unit test framework for C</h1>
-<p>Check is a unit test framework for C. It features a simple interface
+<h1>Check: A unit testing framework for C</h1>
+<p>Check is a unit testing framework for C. It features a simple interface
 for defining unit tests, putting little in the way of the developer.
 Tests are run in a separate address space, so Check can catch both
 assertion failures and code errors that cause segmentation faults or
@@ -14,7 +14,7 @@ code editors and IDEs..</p>
 <p>Check was inspired by similar frameworks that currently exist for
 most programming languages; the most famous example being JUnit for
 Java (<a href="http://www.junit.org">www.junit.org</a>). There is a
-list of unit test frameworks for multiple languages at <a
+list of unit testing frameworks for multiple languages at <a
  href="http://www.xprogramming.com/software.htm">www.xprogramming.com/software.htm</a>
 . Unit testing has a long history as part of formal quality assurance
 methodologies, but has recently been associated with the lightweight