Edited wiki page through web user interface.

This commit is contained in:
shiqian 2008-11-17 20:15:35 +00:00
parent 3a6b41af73
commit b89995b0c9

View file

@ -1,14 +1,12 @@
#summary Google C++ Testing Framework Samples
= Google C++ Testing Framework Samples =
If you're like us, you'd like to look at some Google Test sample code. The
'samples' folder has a number of well-commented samples showing how to use a
[http://code.google.com/p/googletest/source/browse/#svn/trunk/samples samples folder] has a number of well-commented samples showing how to use a
variety of Google Test features.
* Sample #1 shows the basic steps of using Google Test to test C++ functions.
* Sample #2 shows a more complex unit test for a class with multiple member functions.
* Sample #3 uses a test fixture.
* Sample #4 puts shared testing logic in a base test fixture, and reuses it in derived fixtures.
* Sample #5 teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it.
* Sample #6 demonstrates type-parameterized tests.
* [http://code.google.com/p/googletest/source/browse/trunk/samples/sample1.cc Sample #1] shows the basic steps of using Google Test to test C++ functions.
* [http://code.google.com/p/googletest/source/browse/trunk/samples/sample2.cc Sample #2] shows a more complex unit test for a class with multiple member functions.
* [http://code.google.com/p/googletest/source/browse/trunk/samples/sample3.cc Sample #3] uses a test fixture.
* [http://code.google.com/p/googletest/source/browse/trunk/samples/sample4.cc Sample #4] puts shared testing logic in a base test fixture, and reuses it in derived fixtures.
* [http://code.google.com/p/googletest/source/browse/trunk/samples/sample5.cc Sample #5] teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it.
* [http://code.google.com/p/googletest/source/browse/trunk/samples/sample6.cc Sample #6] demonstrates type-parameterized tests.