commit
95548d3ec8
29 changed files with 16074 additions and 0 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,139 @@ |
||||
|
||||
|
||||
If you are interested in understanding the internals of Google Test, |
||||
building from source, or contributing ideas or modifications to the |
||||
project, then this document is for you. |
||||
|
||||
# Introduction # |
||||
|
||||
First, let's give you some background of the project. |
||||
|
||||
## Licensing ## |
||||
|
||||
All Google Test source and pre-built packages are provided under the [New BSD License](http://www.opensource.org/licenses/bsd-license.php). |
||||
|
||||
## The Google Test Community ## |
||||
|
||||
The Google Test community exists primarily through the [discussion group](http://groups.google.com/group/googletestframework), the |
||||
[issue tracker](http://code.google.com/p/googletest/issues/list) and, to a lesser extent, the [source control repository](http://code.google.com/p/googletest/source/checkout). You are definitely encouraged to contribute to the |
||||
discussion and you can also help us to keep the effectiveness of the |
||||
group high by following and promoting the guidelines listed here. |
||||
|
||||
### Please Be Friendly ### |
||||
|
||||
Showing courtesy and respect to others is a vital part of the Google |
||||
culture, and we strongly encourage everyone participating in Google |
||||
Test development to join us in accepting nothing less. Of course, |
||||
being courteous is not the same as failing to constructively disagree |
||||
with each other, but it does mean that we should be respectful of each |
||||
other when enumerating the 42 technical reasons that a particular |
||||
proposal may not be the best choice. There's never a reason to be |
||||
antagonistic or dismissive toward anyone who is sincerely trying to |
||||
contribute to a discussion. |
||||
|
||||
Sure, C++ testing is serious business and all that, but it's also |
||||
a lot of fun. Let's keep it that way. Let's strive to be one of the |
||||
friendliest communities in all of open source. |
||||
|
||||
### Where to Discuss Google Test ### |
||||
|
||||
As always, discuss Google Test in the official [Google C++ Testing Framework discussion group](http://groups.google.com/group/googletestframework). You don't have to actually submit |
||||
code in order to sign up. Your participation itself is a valuable |
||||
contribution. |
||||
|
||||
# Working with the Code # |
||||
|
||||
If you want to get your hands dirty with the code inside Google Test, |
||||
this is the section for you. |
||||
|
||||
## Checking Out the Source from Subversion ## |
||||
|
||||
Checking out the Google Test source is most useful if you plan to |
||||
tweak it yourself. You check out the source for Google Test using a |
||||
[Subversion](http://subversion.tigris.org/) client as you would for any |
||||
other project hosted on Google Code. Please see the instruction on |
||||
the [source code access page](http://code.google.com/p/googletest/source/checkout) for how to do it. |
||||
|
||||
## Compiling from Source ## |
||||
|
||||
Once you check out the code, you can find instructions on how to |
||||
compile it in the [README](http://code.google.com/p/googletest/source/browse/trunk/README) file. |
||||
|
||||
## Testing ## |
||||
|
||||
A testing framework is of no good if itself is not thoroughly tested. |
||||
Tests should be written for any new code, and changes should be |
||||
verified to not break existing tests before they are submitted for |
||||
review. To perform the tests, follow the instructions in [README](http://code.google.com/p/googletest/source/browse/trunk/README) and |
||||
verify that there are no failures. |
||||
|
||||
# Contributing Code # |
||||
|
||||
We are excited that Google Test is now open source, and hope to get |
||||
great patches from the community. Before you fire up your favorite IDE |
||||
and begin hammering away at that new feature, though, please take the |
||||
time to read this section and understand the process. While it seems |
||||
rigorous, we want to keep a high standard of quality in the code |
||||
base. |
||||
|
||||
## Contributor License Agreements ## |
||||
|
||||
You must sign a Contributor License Agreement (CLA) before we can |
||||
accept any code. The CLA protects you and us. |
||||
|
||||
* If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA](http://code.google.com/legal/individual-cla-v1.0.html). |
||||
* If you work for a company that wants to allow you to contribute your work to Google Test, then you'll need to sign a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html). |
||||
|
||||
Follow either of the two links above to access the appropriate CLA and |
||||
instructions for how to sign and return it. |
||||
|
||||
## Coding Style ## |
||||
|
||||
To keep the source consistent, readable, diffable and easy to merge, |
||||
we use a fairly rigid coding style, as defined by the [google-styleguide](http://code.google.com/p/google-styleguide/) project. All patches will be expected |
||||
to conform to the style outlined [here](http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml). |
||||
|
||||
## Updating Generated Code ## |
||||
|
||||
Some of Google Test's source files are generated by the Pump tool (a |
||||
Python script). If you need to update such files, please modify the |
||||
source (`foo.h.pump`) and re-generate the C++ file using Pump. You |
||||
can read the PumpManual for details. |
||||
|
||||
## Submitting Patches ## |
||||
|
||||
Please do submit code. Here's what you need to do: |
||||
|
||||
1. Normally you should make your change against the SVN trunk instead of a branch or a tag, as the latter two are for release control and should be treated mostly as read-only. |
||||
1. Decide which code you want to submit. A submission should be a set of changes that addresses one issue in the [Google Test issue tracker](http://code.google.com/p/googletest/issues/list). Please don't mix more than one logical change per submittal, because it makes the history hard to follow. If you want to make a change that doesn't have a corresponding issue in the issue tracker, please create one. |
||||
1. Also, coordinate with team members that are listed on the issue in question. This ensures that work isn't being duplicated and communicating your plan early also generally leads to better patches. |
||||
1. Ensure that your code adheres to the [Google Test source code style](#Coding_Style.md). |
||||
1. Ensure that there are unit tests for your code. |
||||
1. Sign a Contributor License Agreement. |
||||
1. Create a patch file using `svn diff`. |
||||
1. We use [Rietveld](http://codereview.appspot.com/) to do web-based code reviews. You can read about the tool [here](http://code.google.com/p/rietveld/wiki/CodeReviewHelp). When you are ready, upload your patch via Rietveld and notify `googletestframework@googlegroups.com` to review it. There are several ways to upload the patch. We recommend using the [upload\_gtest.py](http://code.google.com/p/googletest/source/browse/trunk/scripts/upload_gtest.py) script, which you can find in the `scripts/` folder in the SVN trunk. |
||||
|
||||
## Google Test Committers ## |
||||
|
||||
The current members of the Google Test engineering team are the only |
||||
committers at present. In the great tradition of eating one's own |
||||
dogfood, we will be requiring each new Google Test engineering team |
||||
member to earn the right to become a committer by following the |
||||
procedures in this document, writing consistently great code, and |
||||
demonstrating repeatedly that he or she truly gets the zen of Google |
||||
Test. |
||||
|
||||
# Release Process # |
||||
|
||||
We follow the typical release process for Subversion-based projects: |
||||
|
||||
1. A release branch named `release-X.Y` is created. |
||||
1. Bugs are fixed and features are added in trunk; those individual patches are merged into the release branch until it's stable. |
||||
1. An individual point release (the `Z` in `X.Y.Z`) is made by creating a tag from the branch. |
||||
1. Repeat steps 2 and 3 throughout one release cycle (as determined by features or time). |
||||
1. Go back to step 1 to create another release branch and so on. |
||||
|
||||
|
||||
--- |
||||
|
||||
This page is based on the [Making GWT Better](http://code.google.com/webtoolkit/makinggwtbetter.html) guide from the [Google Web Toolkit](http://code.google.com/webtoolkit/) project. Except as otherwise [noted](http://code.google.com/policies.html#restrictions), the content of this page is licensed under the [Creative Commons Attribution 2.5 License](http://creativecommons.org/licenses/by/2.5/). |
@ -0,0 +1,14 @@ |
||||
This page lists all documentation wiki pages for Google Test **(the SVN trunk version)** |
||||
-- **if you use a released version of Google Test, please read the |
||||
documentation for that specific version instead.** |
||||
|
||||
* [Primer](Primer.md) -- start here if you are new to Google Test. |
||||
* [Samples](Samples.md) -- learn from examples. |
||||
* [AdvancedGuide](AdvancedGuide.md) -- learn more about Google Test. |
||||
* [XcodeGuide](XcodeGuide.md) -- how to use Google Test in Xcode on Mac. |
||||
* [Frequently-Asked Questions](FAQ.md) -- check here before asking a question on the mailing list. |
||||
|
||||
To contribute code to Google Test, read: |
||||
|
||||
* [DevGuide](DevGuide.md) -- read this _before_ writing your first patch. |
||||
* [PumpManual](PumpManual.md) -- how we generate some of Google Test's source files. |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,501 @@ |
||||
|
||||
|
||||
# Introduction: Why Google C++ Testing Framework? # |
||||
|
||||
_Google C++ Testing Framework_ helps you write better C++ tests. |
||||
|
||||
No matter whether you work on Linux, Windows, or a Mac, if you write C++ code, |
||||
Google Test can help you. |
||||
|
||||
So what makes a good test, and how does Google C++ Testing Framework fit in? We believe: |
||||
1. Tests should be _independent_ and _repeatable_. It's a pain to debug a test that succeeds or fails as a result of other tests. Google C++ Testing Framework isolates the tests by running each of them on a different object. When a test fails, Google C++ Testing Framework allows you to run it in isolation for quick debugging. |
||||
1. Tests should be well _organized_ and reflect the structure of the tested code. Google C++ Testing Framework groups related tests into test cases that can share data and subroutines. This common pattern is easy to recognize and makes tests easy to maintain. Such consistency is especially helpful when people switch projects and start to work on a new code base. |
||||
1. Tests should be _portable_ and _reusable_. The open-source community has a lot of code that is platform-neutral, its tests should also be platform-neutral. Google C++ Testing Framework works on different OSes, with different compilers (gcc, MSVC, and others), with or without exceptions, so Google C++ Testing Framework tests can easily work with a variety of configurations. (Note that the current release only contains build scripts for Linux - we are actively working on scripts for other platforms.) |
||||
1. When tests fail, they should provide as much _information_ about the problem as possible. Google C++ Testing Framework doesn't stop at the first test failure. Instead, it only stops the current test and continues with the next. You can also set up tests that report non-fatal failures after which the current test continues. Thus, you can detect and fix multiple bugs in a single run-edit-compile cycle. |
||||
1. The testing framework should liberate test writers from housekeeping chores and let them focus on the test _content_. Google C++ Testing Framework automatically keeps track of all tests defined, and doesn't require the user to enumerate them in order to run them. |
||||
1. Tests should be _fast_. With Google C++ Testing Framework, you can reuse shared resources across tests and pay for the set-up/tear-down only once, without making tests depend on each other. |
||||
|
||||
Since Google C++ Testing Framework is based on the popular xUnit |
||||
architecture, you'll feel right at home if you've used JUnit or PyUnit before. |
||||
If not, it will take you about 10 minutes to learn the basics and get started. |
||||
So let's go! |
||||
|
||||
_Note:_ We sometimes refer to Google C++ Testing Framework informally |
||||
as _Google Test_. |
||||
|
||||
# Setting up a New Test Project # |
||||
|
||||
To write a test program using Google Test, you need to compile Google |
||||
Test into a library and link your test with it. We provide build |
||||
files for some popular build systems: `msvc/` for Visual Studio, |
||||
`xcode/` for Mac Xcode, `make/` for GNU make, `codegear/` for Borland |
||||
C++ Builder, and the autotools script (deprecated) and |
||||
`CMakeLists.txt` for CMake (recommended) in the Google Test root |
||||
directory. If your build system is not on this list, you can take a |
||||
look at `make/Makefile` to learn how Google Test should be compiled |
||||
(basically you want to compile `src/gtest-all.cc` with `GTEST_ROOT` |
||||
and `GTEST_ROOT/include` in the header search path, where `GTEST_ROOT` |
||||
is the Google Test root directory). |
||||
|
||||
Once you are able to compile the Google Test library, you should |
||||
create a project or build target for your test program. Make sure you |
||||
have `GTEST_ROOT/include` in the header search path so that the |
||||
compiler can find `"gtest/gtest.h"` when compiling your test. Set up |
||||
your test project to link with the Google Test library (for example, |
||||
in Visual Studio, this is done by adding a dependency on |
||||
`gtest.vcproj`). |
||||
|
||||
If you still have questions, take a look at how Google Test's own |
||||
tests are built and use them as examples. |
||||
|
||||
# Basic Concepts # |
||||
|
||||
When using Google Test, you start by writing _assertions_, which are statements |
||||
that check whether a condition is true. An assertion's result can be _success_, |
||||
_nonfatal failure_, or _fatal failure_. If a fatal failure occurs, it aborts |
||||
the current function; otherwise the program continues normally. |
||||
|
||||
_Tests_ use assertions to verify the tested code's behavior. If a test crashes |
||||
or has a failed assertion, then it _fails_; otherwise it _succeeds_. |
||||
|
||||
A _test case_ contains one or many tests. You should group your tests into test |
||||
cases that reflect the structure of the tested code. When multiple tests in a |
||||
test case need to share common objects and subroutines, you can put them into a |
||||
_test fixture_ class. |
||||
|
||||
A _test program_ can contain multiple test cases. |
||||
|
||||
We'll now explain how to write a test program, starting at the individual |
||||
assertion level and building up to tests and test cases. |
||||
|
||||
# Assertions # |
||||
|
||||
Google Test assertions are macros that resemble function calls. You test a |
||||
class or function by making assertions about its behavior. When an assertion |
||||
fails, Google Test prints the assertion's source file and line number location, |
||||
along with a failure message. You may also supply a custom failure message |
||||
which will be appended to Google Test's message. |
||||
|
||||
The assertions come in pairs that test the same thing but have different |
||||
effects on the current function. `ASSERT_*` versions generate fatal failures |
||||
when they fail, and **abort the current function**. `EXPECT_*` versions generate |
||||
nonfatal failures, which don't abort the current function. Usually `EXPECT_*` |
||||
are preferred, as they allow more than one failures to be reported in a test. |
||||
However, you should use `ASSERT_*` if it doesn't make sense to continue when |
||||
the assertion in question fails. |
||||
|
||||
Since a failed `ASSERT_*` returns from the current function immediately, |
||||
possibly skipping clean-up code that comes after it, it may cause a space leak. |
||||
Depending on the nature of the leak, it may or may not be worth fixing - so |
||||
keep this in mind if you get a heap checker error in addition to assertion |
||||
errors. |
||||
|
||||
To provide a custom failure message, simply stream it into the macro using the |
||||
`<<` operator, or a sequence of such operators. An example: |
||||
``` |
||||
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length"; |
||||
|
||||
for (int i = 0; i < x.size(); ++i) { |
||||
EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i; |
||||
} |
||||
``` |
||||
|
||||
Anything that can be streamed to an `ostream` can be streamed to an assertion |
||||
macro--in particular, C strings and `string` objects. If a wide string |
||||
(`wchar_t*`, `TCHAR*` in `UNICODE` mode on Windows, or `std::wstring`) is |
||||
streamed to an assertion, it will be translated to UTF-8 when printed. |
||||
|
||||
## Basic Assertions ## |
||||
|
||||
These assertions do basic true/false condition testing. |
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_TRUE(`_condition_`)`; | `EXPECT_TRUE(`_condition_`)`; | _condition_ is true | |
||||
| `ASSERT_FALSE(`_condition_`)`; | `EXPECT_FALSE(`_condition_`)`; | _condition_ is false | |
||||
|
||||
Remember, when they fail, `ASSERT_*` yields a fatal failure and |
||||
returns from the current function, while `EXPECT_*` yields a nonfatal |
||||
failure, allowing the function to continue running. In either case, an |
||||
assertion failure means its containing test fails. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## Binary Comparison ## |
||||
|
||||
This section describes assertions that compare two values. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
|`ASSERT_EQ(`_expected_`, `_actual_`);`|`EXPECT_EQ(`_expected_`, `_actual_`);`| _expected_ `==` _actual_ | |
||||
|`ASSERT_NE(`_val1_`, `_val2_`);` |`EXPECT_NE(`_val1_`, `_val2_`);` | _val1_ `!=` _val2_ | |
||||
|`ASSERT_LT(`_val1_`, `_val2_`);` |`EXPECT_LT(`_val1_`, `_val2_`);` | _val1_ `<` _val2_ | |
||||
|`ASSERT_LE(`_val1_`, `_val2_`);` |`EXPECT_LE(`_val1_`, `_val2_`);` | _val1_ `<=` _val2_ | |
||||
|`ASSERT_GT(`_val1_`, `_val2_`);` |`EXPECT_GT(`_val1_`, `_val2_`);` | _val1_ `>` _val2_ | |
||||
|`ASSERT_GE(`_val1_`, `_val2_`);` |`EXPECT_GE(`_val1_`, `_val2_`);` | _val1_ `>=` _val2_ | |
||||
|
||||
In the event of a failure, Google Test prints both _val1_ and _val2_ |
||||
. In `ASSERT_EQ*` and `EXPECT_EQ*` (and all other equality assertions |
||||
we'll introduce later), you should put the expression you want to test |
||||
in the position of _actual_, and put its expected value in _expected_, |
||||
as Google Test's failure messages are optimized for this convention. |
||||
|
||||
Value arguments must be comparable by the assertion's comparison |
||||
operator or you'll get a compiler error. We used to require the |
||||
arguments to support the `<<` operator for streaming to an `ostream`, |
||||
but it's no longer necessary since v1.6.0 (if `<<` is supported, it |
||||
will be called to print the arguments when the assertion fails; |
||||
otherwise Google Test will attempt to print them in the best way it |
||||
can. For more details and how to customize the printing of the |
||||
arguments, see this Google Mock [recipe](http://code.google.com/p/googlemock/wiki/CookBook#Teaching_Google_Mock_How_to_Print_Your_Values).). |
||||
|
||||
These assertions can work with a user-defined type, but only if you define the |
||||
corresponding comparison operator (e.g. `==`, `<`, etc). If the corresponding |
||||
operator is defined, prefer using the `ASSERT_*()` macros because they will |
||||
print out not only the result of the comparison, but the two operands as well. |
||||
|
||||
Arguments are always evaluated exactly once. Therefore, it's OK for the |
||||
arguments to have side effects. However, as with any ordinary C/C++ function, |
||||
the arguments' evaluation order is undefined (i.e. the compiler is free to |
||||
choose any order) and your code should not depend on any particular argument |
||||
evaluation order. |
||||
|
||||
`ASSERT_EQ()` does pointer equality on pointers. If used on two C strings, it |
||||
tests if they are in the same memory location, not if they have the same value. |
||||
Therefore, if you want to compare C strings (e.g. `const char*`) by value, use |
||||
`ASSERT_STREQ()` , which will be described later on. In particular, to assert |
||||
that a C string is `NULL`, use `ASSERT_STREQ(NULL, c_string)` . However, to |
||||
compare two `string` objects, you should use `ASSERT_EQ`. |
||||
|
||||
Macros in this section work with both narrow and wide string objects (`string` |
||||
and `wstring`). |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## String Comparison ## |
||||
|
||||
The assertions in this group compare two **C strings**. If you want to compare |
||||
two `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_STREQ(`_expected\_str_`, `_actual\_str_`);` | `EXPECT_STREQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content | |
||||
| `ASSERT_STRNE(`_str1_`, `_str2_`);` | `EXPECT_STRNE(`_str1_`, `_str2_`);` | the two C strings have different content | |
||||
| `ASSERT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);`| `EXPECT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content, ignoring case | |
||||
| `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case | |
||||
|
||||
Note that "CASE" in an assertion name means that case is ignored. |
||||
|
||||
`*STREQ*` and `*STRNE*` also accept wide C strings (`wchar_t*`). If a |
||||
comparison of two wide strings fails, their values will be printed as UTF-8 |
||||
narrow strings. |
||||
|
||||
A `NULL` pointer and an empty string are considered _different_. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
See also: For more string comparison tricks (substring, prefix, suffix, and |
||||
regular expression matching, for example), see the [Advanced Google Test Guide](AdvancedGuide.md). |
||||
|
||||
# Simple Tests # |
||||
|
||||
To create a test: |
||||
1. Use the `TEST()` macro to define and name a test function, These are ordinary C++ functions that don't return a value. |
||||
1. In this function, along with any valid C++ statements you want to include, use the various Google Test assertions to check values. |
||||
1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds. |
||||
|
||||
``` |
||||
TEST(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
|
||||
`TEST()` arguments go from general to specific. The _first_ argument is the |
||||
name of the test case, and the _second_ argument is the test's name within the |
||||
test case. Both names must be valid C++ identifiers, and they should not contain underscore (`_`). A test's _full name_ consists of its containing test case and its |
||||
individual name. Tests from different test cases can have the same individual |
||||
name. |
||||
|
||||
For example, let's take a simple integer function: |
||||
``` |
||||
int Factorial(int n); // Returns the factorial of n |
||||
``` |
||||
|
||||
A test case for this function might look like: |
||||
``` |
||||
// Tests factorial of 0. |
||||
TEST(FactorialTest, HandlesZeroInput) { |
||||
EXPECT_EQ(1, Factorial(0)); |
||||
} |
||||
|
||||
// Tests factorial of positive numbers. |
||||
TEST(FactorialTest, HandlesPositiveInput) { |
||||
EXPECT_EQ(1, Factorial(1)); |
||||
EXPECT_EQ(2, Factorial(2)); |
||||
EXPECT_EQ(6, Factorial(3)); |
||||
EXPECT_EQ(40320, Factorial(8)); |
||||
} |
||||
``` |
||||
|
||||
Google Test groups the test results by test cases, so logically-related tests |
||||
should be in the same test case; in other words, the first argument to their |
||||
`TEST()` should be the same. In the above example, we have two tests, |
||||
`HandlesZeroInput` and `HandlesPositiveInput`, that belong to the same test |
||||
case `FactorialTest`. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Test Fixtures: Using the Same Data Configuration for Multiple Tests # |
||||
|
||||
If you find yourself writing two or more tests that operate on similar data, |
||||
you can use a _test fixture_. It allows you to reuse the same configuration of |
||||
objects for several different tests. |
||||
|
||||
To create a fixture, just: |
||||
1. Derive a class from `::testing::Test` . Start its body with `protected:` or `public:` as we'll want to access fixture members from sub-classes. |
||||
1. Inside the class, declare any objects you plan to use. |
||||
1. If necessary, write a default constructor or `SetUp()` function to prepare the objects for each test. A common mistake is to spell `SetUp()` as `Setup()` with a small `u` - don't let that happen to you. |
||||
1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read this [FAQ entry](http://code.google.com/p/googletest/wiki/FAQ#Should_I_use_the_constructor/destructor_of_the_test_fixture_or_t). |
||||
1. If needed, define subroutines for your tests to share. |
||||
|
||||
When using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to |
||||
access objects and subroutines in the test fixture: |
||||
``` |
||||
TEST_F(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
Like `TEST()`, the first argument is the test case name, but for `TEST_F()` |
||||
this must be the name of the test fixture class. You've probably guessed: `_F` |
||||
is for fixture. |
||||
|
||||
Unfortunately, the C++ macro system does not allow us to create a single macro |
||||
that can handle both types of tests. Using the wrong macro causes a compiler |
||||
error. |
||||
|
||||
Also, you must first define a test fixture class before using it in a |
||||
`TEST_F()`, or you'll get the compiler error "`virtual outside class |
||||
declaration`". |
||||
|
||||
For each test defined with `TEST_F()`, Google Test will: |
||||
1. Create a _fresh_ test fixture at runtime |
||||
1. Immediately initialize it via `SetUp()` , |
||||
1. Run the test |
||||
1. Clean up by calling `TearDown()` |
||||
1. Delete the test fixture. Note that different tests in the same test case have different test fixture objects, and Google Test always deletes a test fixture before it creates the next one. Google Test does not reuse the same test fixture for multiple tests. Any changes one test makes to the fixture do not affect other tests. |
||||
|
||||
As an example, let's write tests for a FIFO queue class named `Queue`, which |
||||
has the following interface: |
||||
``` |
||||
template <typename E> // E is the element type. |
||||
class Queue { |
||||
public: |
||||
Queue(); |
||||
void Enqueue(const E& element); |
||||
E* Dequeue(); // Returns NULL if the queue is empty. |
||||
size_t size() const; |
||||
... |
||||
}; |
||||
``` |
||||
|
||||
First, define a fixture class. By convention, you should give it the name |
||||
`FooTest` where `Foo` is the class being tested. |
||||
``` |
||||
class QueueTest : public ::testing::Test { |
||||
protected: |
||||
virtual void SetUp() { |
||||
q1_.Enqueue(1); |
||||
q2_.Enqueue(2); |
||||
q2_.Enqueue(3); |
||||
} |
||||
|
||||
// virtual void TearDown() {} |
||||
|
||||
Queue<int> q0_; |
||||
Queue<int> q1_; |
||||
Queue<int> q2_; |
||||
}; |
||||
``` |
||||
|
||||
In this case, `TearDown()` is not needed since we don't have to clean up after |
||||
each test, other than what's already done by the destructor. |
||||
|
||||
Now we'll write tests using `TEST_F()` and this fixture. |
||||
``` |
||||
TEST_F(QueueTest, IsEmptyInitially) { |
||||
EXPECT_EQ(0, q0_.size()); |
||||
} |
||||
|
||||
TEST_F(QueueTest, DequeueWorks) { |
||||
int* n = q0_.Dequeue(); |
||||
EXPECT_EQ(NULL, n); |
||||
|
||||
n = q1_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(1, *n); |
||||
EXPECT_EQ(0, q1_.size()); |
||||
delete n; |
||||
|
||||
n = q2_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(2, *n); |
||||
EXPECT_EQ(1, q2_.size()); |
||||
delete n; |
||||
} |
||||
``` |
||||
|
||||
The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is |
||||
to use `EXPECT_*` when you want the test to continue to reveal more errors |
||||
after the assertion failure, and use `ASSERT_*` when continuing after failure |
||||
doesn't make sense. For example, the second assertion in the `Dequeue` test is |
||||
`ASSERT_TRUE(n != NULL)`, as we need to dereference the pointer `n` later, |
||||
which would lead to a segfault when `n` is `NULL`. |
||||
|
||||
When these tests run, the following happens: |
||||
1. Google Test constructs a `QueueTest` object (let's call it `t1` ). |
||||
1. `t1.SetUp()` initializes `t1` . |
||||
1. The first test ( `IsEmptyInitially` ) runs on `t1` . |
||||
1. `t1.TearDown()` cleans up after the test finishes. |
||||
1. `t1` is destructed. |
||||
1. The above steps are repeated on another `QueueTest` object, this time running the `DequeueWorks` test. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
_Note_: Google Test automatically saves all _Google Test_ flags when a test |
||||
object is constructed, and restores them when it is destructed. |
||||
|
||||
# Invoking the Tests # |
||||
|
||||
`TEST()` and `TEST_F()` implicitly register their tests with Google Test. So, unlike with many other C++ testing frameworks, you don't have to re-list all your defined tests in order to run them. |
||||
|
||||
After defining your tests, you can run them with `RUN_ALL_TESTS()` , which returns `0` if all the tests are successful, or `1` otherwise. Note that `RUN_ALL_TESTS()` runs _all tests_ in your link unit -- they can be from different test cases, or even different source files. |
||||
|
||||
When invoked, the `RUN_ALL_TESTS()` macro: |
||||
1. Saves the state of all Google Test flags. |
||||
1. Creates a test fixture object for the first test. |
||||
1. Initializes it via `SetUp()`. |
||||
1. Runs the test on the fixture object. |
||||
1. Cleans up the fixture via `TearDown()`. |
||||
1. Deletes the fixture. |
||||
1. Restores the state of all Google Test flags. |
||||
1. Repeats the above steps for the next test, until all tests have run. |
||||
|
||||
In addition, if the text fixture's constructor generates a fatal failure in |
||||
step 2, there is no point for step 3 - 5 and they are thus skipped. Similarly, |
||||
if step 3 generates a fatal failure, step 4 will be skipped. |
||||
|
||||
_Important_: You must not ignore the return value of `RUN_ALL_TESTS()`, or `gcc` |
||||
will give you a compiler error. The rationale for this design is that the |
||||
automated testing service determines whether a test has passed based on its |
||||
exit code, not on its stdout/stderr output; thus your `main()` function must |
||||
return the value of `RUN_ALL_TESTS()`. |
||||
|
||||
Also, you should call `RUN_ALL_TESTS()` only **once**. Calling it more than once |
||||
conflicts with some advanced Google Test features (e.g. thread-safe death |
||||
tests) and thus is not supported. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Writing the main() Function # |
||||
|
||||
You can start from this boilerplate: |
||||
``` |
||||
#include "this/package/foo.h" |
||||
#include "gtest/gtest.h" |
||||
|
||||
namespace { |
||||
|
||||
// The fixture for testing class Foo. |
||||
class FooTest : public ::testing::Test { |
||||
protected: |
||||
// You can remove any or all of the following functions if its body |
||||
// is empty. |
||||
|
||||
FooTest() { |
||||
// You can do set-up work for each test here. |
||||
} |
||||
|
||||
virtual ~FooTest() { |
||||
// You can do clean-up work that doesn't throw exceptions here. |
||||
} |
||||
|
||||
// If the constructor and destructor are not enough for setting up |
||||
// and cleaning up each test, you can define the following methods: |
||||
|
||||
virtual void SetUp() { |
||||
// Code here will be called immediately after the constructor (right |
||||
// before each test). |
||||
} |
||||
|
||||
virtual void TearDown() { |
||||
// Code here will be called immediately after each test (right |
||||
// before the destructor). |
||||
} |
||||
|
||||
// Objects declared here can be used by all tests in the test case for Foo. |
||||
}; |
||||
|
||||
// Tests that the Foo::Bar() method does Abc. |
||||
TEST_F(FooTest, MethodBarDoesAbc) { |
||||
const string input_filepath = "this/package/testdata/myinputfile.dat"; |
||||
const string output_filepath = "this/package/testdata/myoutputfile.dat"; |
||||
Foo f; |
||||
EXPECT_EQ(0, f.Bar(input_filepath, output_filepath)); |
||||
} |
||||
|
||||
// Tests that Foo does Xyz. |
||||
TEST_F(FooTest, DoesXyz) { |
||||
// Exercises the Xyz feature of Foo. |
||||
} |
||||
|
||||
} // namespace |
||||
|
||||
int main(int argc, char **argv) { |
||||
::testing::InitGoogleTest(&argc, argv); |
||||
return RUN_ALL_TESTS(); |
||||
} |
||||
``` |
||||
|
||||
The `::testing::InitGoogleTest()` function parses the command line for Google |
||||
Test flags, and removes all recognized flags. This allows the user to control a |
||||
test program's behavior via various flags, which we'll cover in [AdvancedGuide](AdvancedGuide.md). |
||||
You must call this function before calling `RUN_ALL_TESTS()`, or the flags |
||||
won't be properly initialized. |
||||
|
||||
On Windows, `InitGoogleTest()` also works with wide strings, so it can be used |
||||
in programs compiled in `UNICODE` mode as well. |
||||
|
||||
But maybe you think that writing all those main() functions is too much work? We agree with you completely and that's why Google Test provides a basic implementation of main(). If it fits your needs, then just link your test with gtest\_main library and you are good to go. |
||||
|
||||
## Important note for Visual C++ users ## |
||||
If you put your tests into a library and your `main()` function is in a different library or in your .exe file, those tests will not run. The reason is a [bug](https://connect.microsoft.com/feedback/viewfeedback.aspx?FeedbackID=244410&siteid=210) in Visual C++. When you define your tests, Google Test creates certain static objects to register them. These objects are not referenced from elsewhere but their constructors are still supposed to run. When Visual C++ linker sees that nothing in the library is referenced from other places it throws the library out. You have to reference your library with tests from your main program to keep the linker from discarding it. Here is how to do it. Somewhere in your library code declare a function: |
||||
``` |
||||
__declspec(dllexport) int PullInMyLibrary() { return 0; } |
||||
``` |
||||
If you put your tests in a static library (not DLL) then `__declspec(dllexport)` is not required. Now, in your main program, write a code that invokes that function: |
||||
``` |
||||
int PullInMyLibrary(); |
||||
static int dummy = PullInMyLibrary(); |
||||
``` |
||||
This will keep your tests referenced and will make them register themselves at startup. |
||||
|
||||
In addition, if you define your tests in a static library, add `/OPT:NOREF` to your main program linker options. If you use MSVC++ IDE, go to your .exe project properties/Configuration Properties/Linker/Optimization and set References setting to `Keep Unreferenced Data (/OPT:NOREF)`. This will keep Visual C++ linker from discarding individual symbols generated by your tests from the final executable. |
||||
|
||||
There is one more pitfall, though. If you use Google Test as a static library (that's how it is defined in gtest.vcproj) your tests must also reside in a static library. If you have to have them in a DLL, you _must_ change Google Test to build into a DLL as well. Otherwise your tests will not run correctly or will not run at all. The general conclusion here is: make your life easier - do not write your tests in libraries! |
||||
|
||||
# Where to Go from Here # |
||||
|
||||
Congratulations! You've learned the Google Test basics. You can start writing |
||||
and running Google Test tests, read some [samples](Samples.md), or continue with |
||||
[AdvancedGuide](AdvancedGuide.md), which describes many more useful Google Test features. |
||||
|
||||
# Known Limitations # |
||||
|
||||
Google Test is designed to be thread-safe. The implementation is |
||||
thread-safe on systems where the `pthreads` library is available. It |
||||
is currently _unsafe_ to use Google Test assertions from two threads |
||||
concurrently on other systems (e.g. Windows). In most tests this is |
||||
not an issue as usually the assertions are done in the main thread. If |
||||
you want to help, you can volunteer to implement the necessary |
||||
synchronization primitives in `gtest-port.h` for your platform. |
@ -0,0 +1,31 @@ |
||||
|
||||
|
||||
Google's framework for writing C++ tests on a variety of platforms |
||||
(Linux, Mac OS X, Windows, Cygwin, Windows CE, and Symbian). Based on |
||||
the xUnit architecture. Supports automatic test discovery, a rich set |
||||
of assertions, user-defined assertions, death tests, fatal and |
||||
non-fatal failures, value- and type-parameterized tests, various |
||||
options for running the tests, and XML test report generation. |
||||
|
||||
## Getting Started ## |
||||
|
||||
After downloading Google Test, unpack it, read the README file and the documentation wiki pages (listed on the right side of this front page). |
||||
|
||||
## Who Is Using Google Test? ## |
||||
|
||||
In addition to many internal projects at Google, Google Test is also used by |
||||
the following notable projects: |
||||
|
||||
* The [Chromium projects](http://www.chromium.org/) (behind the Chrome browser and Chrome OS) |
||||
* The [LLVM](http://llvm.org/) compiler |
||||
* [Protocol Buffers](http://code.google.com/p/protobuf/) (Google's data interchange format) |
||||
* The [OpenCV](http://opencv.org/) computer vision library |
||||
|
||||
If you know of a project that's using Google Test and want it to be listed here, please let |
||||
`googletestframework@googlegroups.com` know. |
||||
|
||||
## Google Test-related open source projects ## |
||||
|
||||
[Google Test UI](http://code.google.com/p/gtest-gbar/) is test runner that runs your test binary, allows you to track its progress via a progress bar, and displays a list of test failures. Clicking on one shows failure text. Google Test UI is written in C#. |
||||
|
||||
[GTest TAP Listener](https://github.com/kinow/gtest-tap-listener) is an event listener for Google Test that implements the [TAP protocol](http://en.wikipedia.org/wiki/Test_Anything_Protocol) for test result output. If your test runner understands TAP, you may find it useful. |
@ -0,0 +1,177 @@ |
||||
|
||||
|
||||
<b>P</b>ump is <b>U</b>seful for <b>M</b>eta <b>P</b>rogramming. |
||||
|
||||
# The Problem # |
||||
|
||||
Template and macro libraries often need to define many classes, |
||||
functions, or macros that vary only (or almost only) in the number of |
||||
arguments they take. It's a lot of repetitive, mechanical, and |
||||
error-prone work. |
||||
|
||||
Variadic templates and variadic macros can alleviate the problem. |
||||
However, while both are being considered by the C++ committee, neither |
||||
is in the standard yet or widely supported by compilers. Thus they |
||||
are often not a good choice, especially when your code needs to be |
||||
portable. And their capabilities are still limited. |
||||
|
||||
As a result, authors of such libraries often have to write scripts to |
||||
generate their implementation. However, our experience is that it's |
||||
tedious to write such scripts, which tend to reflect the structure of |
||||
the generated code poorly and are often hard to read and edit. For |
||||
example, a small change needed in the generated code may require some |
||||
non-intuitive, non-trivial changes in the script. This is especially |
||||
painful when experimenting with the code. |
||||
|
||||
# Our Solution # |
||||
|
||||
Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta |
||||
Programming, or Practical Utility for Meta Programming, whichever you |
||||
prefer) is a simple meta-programming tool for C++. The idea is that a |
||||
programmer writes a `foo.pump` file which contains C++ code plus meta |
||||
code that manipulates the C++ code. The meta code can handle |
||||
iterations over a range, nested iterations, local meta variable |
||||
definitions, simple arithmetic, and conditional expressions. You can |
||||
view it as a small Domain-Specific Language. The meta language is |
||||
designed to be non-intrusive (s.t. it won't confuse Emacs' C++ mode, |
||||
for example) and concise, making Pump code intuitive and easy to |
||||
maintain. |
||||
|
||||
## Highlights ## |
||||
|
||||
* The implementation is in a single Python script and thus ultra portable: no build or installation is needed and it works cross platforms. |
||||
* Pump tries to be smart with respect to [Google's style guide](http://code.google.com/p/google-styleguide/): it breaks long lines (easy to have when they are generated) at acceptable places to fit within 80 columns and indent the continuation lines correctly. |
||||
* The format is human-readable and more concise than XML. |
||||
* The format works relatively well with Emacs' C++ mode. |
||||
|
||||
## Examples ## |
||||
|
||||
The following Pump code (where meta keywords start with `$`, `[[` and `]]` are meta brackets, and `$$` starts a meta comment that ends with the line): |
||||
|
||||
``` |
||||
$var n = 3 $$ Defines a meta variable n. |
||||
$range i 0..n $$ Declares the range of meta iterator i (inclusive). |
||||
$for i [[ |
||||
$$ Meta loop. |
||||
// Foo$i does blah for $i-ary predicates. |
||||
$range j 1..i |
||||
template <size_t N $for j [[, typename A$j]]> |
||||
class Foo$i { |
||||
$if i == 0 [[ |
||||
blah a; |
||||
]] $elif i <= 2 [[ |
||||
blah b; |
||||
]] $else [[ |
||||
blah c; |
||||
]] |
||||
}; |
||||
|
||||
]] |
||||
``` |
||||
|
||||
will be translated by the Pump compiler to: |
||||
|
||||
``` |
||||
// Foo0 does blah for 0-ary predicates. |
||||
template <size_t N> |
||||
class Foo0 { |
||||
blah a; |
||||
}; |
||||
|
||||
// Foo1 does blah for 1-ary predicates. |
||||
template <size_t N, typename A1> |
||||
class Foo1 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo2 does blah for 2-ary predicates. |
||||
template <size_t N, typename A1, typename A2> |
||||
class Foo2 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo3 does blah for 3-ary predicates. |
||||
template <size_t N, typename A1, typename A2, typename A3> |
||||
class Foo3 { |
||||
blah c; |
||||
}; |
||||
``` |
||||
|
||||
In another example, |
||||
|
||||
``` |
||||
$range i 1..n |
||||
Func($for i + [[a$i]]); |
||||
$$ The text between i and [[ is the separator between iterations. |
||||
``` |
||||
|
||||
will generate one of the following lines (without the comments), depending on the value of `n`: |
||||
|
||||
``` |
||||
Func(); // If n is 0. |
||||
Func(a1); // If n is 1. |
||||
Func(a1 + a2); // If n is 2. |
||||
Func(a1 + a2 + a3); // If n is 3. |
||||
// And so on... |
||||
``` |
||||
|
||||
## Constructs ## |
||||
|
||||
We support the following meta programming constructs: |
||||
|
||||
| `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. | |
||||
|:----------------|:-----------------------------------------------------------------------------------------------| |
||||
| `$range id exp..exp` | Sets the range of an iteration variable, which can be reused in multiple loops later. | |
||||
| `$for id sep [[ code ]]` | Iteration. The range of `id` must have been defined earlier. `$id` is valid in `code`. | |
||||
| `$($)` | Generates a single `$` character. | |
||||
| `$id` | Value of the named constant or iteration variable. | |
||||
| `$(exp)` | Value of the expression. | |
||||
| `$if exp [[ code ]] else_branch` | Conditional. | |
||||
| `[[ code ]]` | Meta lexical block. | |
||||
| `cpp_code` | Raw C++ code. | |
||||
| `$$ comment` | Meta comment. | |
||||
|
||||
**Note:** To give the user some freedom in formatting the Pump source |
||||
code, Pump ignores a new-line character if it's right after `$for foo` |
||||
or next to `[[` or `]]`. Without this rule you'll often be forced to write |
||||
very long lines to get the desired output. Therefore sometimes you may |
||||
need to insert an extra new-line in such places for a new-line to show |
||||
up in your output. |
||||
|
||||
## Grammar ## |
||||
|
||||
``` |
||||
code ::= atomic_code* |
||||
atomic_code ::= $var id = exp |
||||
| $var id = [[ code ]] |
||||
| $range id exp..exp |
||||
| $for id sep [[ code ]] |
||||
| $($) |
||||
| $id |
||||
| $(exp) |
||||
| $if exp [[ code ]] else_branch |
||||
| [[ code ]] |
||||
| cpp_code |
||||
sep ::= cpp_code | empty_string |
||||
else_branch ::= $else [[ code ]] |
||||
| $elif exp [[ code ]] else_branch |
||||
| empty_string |
||||
exp ::= simple_expression_in_Python_syntax |
||||
``` |
||||
|
||||
## Code ## |
||||
|
||||
You can find the source code of Pump in [scripts/pump.py](http://code.google.com/p/googletest/source/browse/trunk/scripts/pump.py). It is still |
||||
very unpolished and lacks automated tests, although it has been |
||||
successfully used many times. If you find a chance to use it in your |
||||
project, please let us know what you think! We also welcome help on |
||||
improving Pump. |
||||
|
||||
## Real Examples ## |
||||
|
||||
You can find real-world applications of Pump in [Google Test](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgoogletest\.googlecode\.com) and [Google Mock](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgooglemock\.googlecode\.com). The source file `foo.h.pump` generates `foo.h`. |
||||
|
||||
## Tips ## |
||||
|
||||
* If a meta variable is followed by a letter or digit, you can separate them using `[[]]`, which inserts an empty string. For example `Foo$j[[]]Helper` generate `Foo1Helper` when `j` is 1. |
||||
* To avoid extra-long Pump source lines, you can break a line anywhere you want by inserting `[[]]` followed by a new line. Since any new-line character next to `[[` or `]]` is ignored, the generated code won't contain this new line. |
@ -0,0 +1,14 @@ |
||||
If you're like us, you'd like to look at some Google Test sample code. The |
||||
[samples folder](http://code.google.com/p/googletest/source/browse/#svn/trunk/samples) has a number of well-commented samples showing how to use a |
||||
variety of Google Test features. |
||||
|
||||
* [Sample #1](http://code.google.com/p/googletest/source/browse/trunk/samples/sample1_unittest.cc) shows the basic steps of using Google Test to test C++ functions. |
||||
* [Sample #2](http://code.google.com/p/googletest/source/browse/trunk/samples/sample2_unittest.cc) shows a more complex unit test for a class with multiple member functions. |
||||
* [Sample #3](http://code.google.com/p/googletest/source/browse/trunk/samples/sample3_unittest.cc) uses a test fixture. |
||||
* [Sample #4](http://code.google.com/p/googletest/source/browse/trunk/samples/sample4_unittest.cc) is another basic example of using Google Test. |
||||
* [Sample #5](http://code.google.com/p/googletest/source/browse/trunk/samples/sample5_unittest.cc) teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it. |
||||
* [Sample #6](http://code.google.com/p/googletest/source/browse/trunk/samples/sample6_unittest.cc) demonstrates type-parameterized tests. |
||||
* [Sample #7](http://code.google.com/p/googletest/source/browse/trunk/samples/sample7_unittest.cc) teaches the basics of value-parameterized tests. |
||||
* [Sample #8](http://code.google.com/p/googletest/source/browse/trunk/samples/sample8_unittest.cc) shows using `Combine()` in value-parameterized tests. |
||||
* [Sample #9](http://code.google.com/p/googletest/source/browse/trunk/samples/sample9_unittest.cc) shows use of the listener API to modify Google Test's console output and the use of its reflection API to inspect test results. |
||||
* [Sample #10](http://code.google.com/p/googletest/source/browse/trunk/samples/sample10_unittest.cc) shows use of the listener API to implement a primitive memory leak checker. |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,12 @@ |
||||
This page lists all official documentation wiki pages for Google Test **1.5.0** -- **if you use a different version of Google Test, make sure to read the documentation for that version instead.** |
||||
|
||||
* [Primer](V1_5_Primer.md) -- start here if you are new to Google Test. |
||||
* [Samples](Samples.md) -- learn from examples. |
||||
* [AdvancedGuide](V1_5_AdvancedGuide.md) -- learn more about Google Test. |
||||
* [XcodeGuide](V1_5_XcodeGuide.md) -- how to use Google Test in Xcode on Mac. |
||||
* [Frequently-Asked Questions](V1_5_FAQ.md) -- check here before asking a question on the mailing list. |
||||
|
||||
To contribute code to Google Test, read: |
||||
|
||||
* DevGuide -- read this _before_ writing your first patch. |
||||
* [PumpManual](V1_5_PumpManual.md) -- how we generate some of Google Test's source files. |
@ -0,0 +1,497 @@ |
||||
|
||||
|
||||
# Introduction: Why Google C++ Testing Framework? # |
||||
|
||||
_Google C++ Testing Framework_ helps you write better C++ tests. |
||||
|
||||
No matter whether you work on Linux, Windows, or a Mac, if you write C++ code, |
||||
Google Test can help you. |
||||
|
||||
So what makes a good test, and how does Google C++ Testing Framework fit in? We believe: |
||||
1. Tests should be _independent_ and _repeatable_. It's a pain to debug a test that succeeds or fails as a result of other tests. Google C++ Testing Framework isolates the tests by running each of them on a different object. When a test fails, Google C++ Testing Framework allows you to run it in isolation for quick debugging. |
||||
1. Tests should be well _organized_ and reflect the structure of the tested code. Google C++ Testing Framework groups related tests into test cases that can share data and subroutines. This common pattern is easy to recognize and makes tests easy to maintain. Such consistency is especially helpful when people switch projects and start to work on a new code base. |
||||
1. Tests should be _portable_ and _reusable_. The open-source community has a lot of code that is platform-neutral, its tests should also be platform-neutral. Google C++ Testing Framework works on different OSes, with different compilers (gcc, MSVC, and others), with or without exceptions, so Google C++ Testing Framework tests can easily work with a variety of configurations. (Note that the current release only contains build scripts for Linux - we are actively working on scripts for other platforms.) |
||||
1. When tests fail, they should provide as much _information_ about the problem as possible. Google C++ Testing Framework doesn't stop at the first test failure. Instead, it only stops the current test and continues with the next. You can also set up tests that report non-fatal failures after which the current test continues. Thus, you can detect and fix multiple bugs in a single run-edit-compile cycle. |
||||
1. The testing framework should liberate test writers from housekeeping chores and let them focus on the test _content_. Google C++ Testing Framework automatically keeps track of all tests defined, and doesn't require the user to enumerate them in order to run them. |
||||
1. Tests should be _fast_. With Google C++ Testing Framework, you can reuse shared resources across tests and pay for the set-up/tear-down only once, without making tests depend on each other. |
||||
|
||||
Since Google C++ Testing Framework is based on the popular xUnit |
||||
architecture, you'll feel right at home if you've used JUnit or PyUnit before. |
||||
If not, it will take you about 10 minutes to learn the basics and get started. |
||||
So let's go! |
||||
|
||||
_Note:_ We sometimes refer to Google C++ Testing Framework informally |
||||
as _Google Test_. |
||||
|
||||
# Setting up a New Test Project # |
||||
|
||||
To write a test program using Google Test, you need to compile Google |
||||
Test into a library and link your test with it. We provide build |
||||
files for some popular build systems (`msvc/` for Visual Studio, |
||||
`xcode/` for Mac Xcode, `make/` for GNU make, `codegear/` for Borland |
||||
C++ Builder, and the autotools script in the |
||||
Google Test root directory). If your build system is not on this |
||||
list, you can take a look at `make/Makefile` to learn how Google Test |
||||
should be compiled (basically you want to compile `src/gtest-all.cc` |
||||
with `GTEST_ROOT` and `GTEST_ROOT/include` in the header search path, |
||||
where `GTEST_ROOT` is the Google Test root directory). |
||||
|
||||
Once you are able to compile the Google Test library, you should |
||||
create a project or build target for your test program. Make sure you |
||||
have `GTEST_ROOT/include` in the header search path so that the |
||||
compiler can find `<gtest/gtest.h>` when compiling your test. Set up |
||||
your test project to link with the Google Test library (for example, |
||||
in Visual Studio, this is done by adding a dependency on |
||||
`gtest.vcproj`). |
||||
|
||||
If you still have questions, take a look at how Google Test's own |
||||
tests are built and use them as examples. |
||||
|
||||
# Basic Concepts # |
||||
|
||||
When using Google Test, you start by writing _assertions_, which are statements |
||||
that check whether a condition is true. An assertion's result can be _success_, |
||||
_nonfatal failure_, or _fatal failure_. If a fatal failure occurs, it aborts |
||||
the current function; otherwise the program continues normally. |
||||
|
||||
_Tests_ use assertions to verify the tested code's behavior. If a test crashes |
||||
or has a failed assertion, then it _fails_; otherwise it _succeeds_. |
||||
|
||||
A _test case_ contains one or many tests. You should group your tests into test |
||||
cases that reflect the structure of the tested code. When multiple tests in a |
||||
test case need to share common objects and subroutines, you can put them into a |
||||
_test fixture_ class. |
||||
|
||||
A _test program_ can contain multiple test cases. |
||||
|
||||
We'll now explain how to write a test program, starting at the individual |
||||
assertion level and building up to tests and test cases. |
||||
|
||||
# Assertions # |
||||
|
||||
Google Test assertions are macros that resemble function calls. You test a |
||||
class or function by making assertions about its behavior. When an assertion |
||||
fails, Google Test prints the assertion's source file and line number location, |
||||
along with a failure message. You may also supply a custom failure message |
||||
which will be appended to Google Test's message. |
||||
|
||||
The assertions come in pairs that test the same thing but have different |
||||
effects on the current function. `ASSERT_*` versions generate fatal failures |
||||
when they fail, and **abort the current function**. `EXPECT_*` versions generate |
||||
nonfatal failures, which don't abort the current function. Usually `EXPECT_*` |
||||
are preferred, as they allow more than one failures to be reported in a test. |
||||
However, you should use `ASSERT_*` if it doesn't make sense to continue when |
||||
the assertion in question fails. |
||||
|
||||
Since a failed `ASSERT_*` returns from the current function immediately, |
||||
possibly skipping clean-up code that comes after it, it may cause a space leak. |
||||
Depending on the nature of the leak, it may or may not be worth fixing - so |
||||
keep this in mind if you get a heap checker error in addition to assertion |
||||
errors. |
||||
|
||||
To provide a custom failure message, simply stream it into the macro using the |
||||
`<<` operator, or a sequence of such operators. An example: |
||||
``` |
||||
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length"; |
||||
|
||||
for (int i = 0; i < x.size(); ++i) { |
||||
EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i; |
||||
} |
||||
``` |
||||
|
||||
Anything that can be streamed to an `ostream` can be streamed to an assertion |
||||
macro--in particular, C strings and `string` objects. If a wide string |
||||
(`wchar_t*`, `TCHAR*` in `UNICODE` mode on Windows, or `std::wstring`) is |
||||
streamed to an assertion, it will be translated to UTF-8 when printed. |
||||
|
||||
## Basic Assertions ## |
||||
|
||||
These assertions do basic true/false condition testing. |
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_TRUE(`_condition_`)`; | `EXPECT_TRUE(`_condition_`)`; | _condition_ is true | |
||||
| `ASSERT_FALSE(`_condition_`)`; | `EXPECT_FALSE(`_condition_`)`; | _condition_ is false | |
||||
|
||||
Remember, when they fail, `ASSERT_*` yields a fatal failure and |
||||
returns from the current function, while `EXPECT_*` yields a nonfatal |
||||
failure, allowing the function to continue running. In either case, an |
||||
assertion failure means its containing test fails. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## Binary Comparison ## |
||||
|
||||
This section describes assertions that compare two values. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
|`ASSERT_EQ(`_expected_`, `_actual_`);`|`EXPECT_EQ(`_expected_`, `_actual_`);`| _expected_ `==` _actual_ | |
||||
|`ASSERT_NE(`_val1_`, `_val2_`);` |`EXPECT_NE(`_val1_`, `_val2_`);` | _val1_ `!=` _val2_ | |
||||
|`ASSERT_LT(`_val1_`, `_val2_`);` |`EXPECT_LT(`_val1_`, `_val2_`);` | _val1_ `<` _val2_ | |
||||
|`ASSERT_LE(`_val1_`, `_val2_`);` |`EXPECT_LE(`_val1_`, `_val2_`);` | _val1_ `<=` _val2_ | |
||||
|`ASSERT_GT(`_val1_`, `_val2_`);` |`EXPECT_GT(`_val1_`, `_val2_`);` | _val1_ `>` _val2_ | |
||||
|`ASSERT_GE(`_val1_`, `_val2_`);` |`EXPECT_GE(`_val1_`, `_val2_`);` | _val1_ `>=` _val2_ | |
||||
|
||||
In the event of a failure, Google Test prints both _val1_ and _val2_ |
||||
. In `ASSERT_EQ*` and `EXPECT_EQ*` (and all other equality assertions |
||||
we'll introduce later), you should put the expression you want to test |
||||
in the position of _actual_, and put its expected value in _expected_, |
||||
as Google Test's failure messages are optimized for this convention. |
||||
|
||||
Value arguments must be comparable by the assertion's comparison operator or |
||||
you'll get a compiler error. Values must also support the `<<` operator for |
||||
streaming to an `ostream`. All built-in types support this. |
||||
|
||||
These assertions can work with a user-defined type, but only if you define the |
||||
corresponding comparison operator (e.g. `==`, `<`, etc). If the corresponding |
||||
operator is defined, prefer using the `ASSERT_*()` macros because they will |
||||
print out not only the result of the comparison, but the two operands as well. |
||||
|
||||
Arguments are always evaluated exactly once. Therefore, it's OK for the |
||||
arguments to have side effects. However, as with any ordinary C/C++ function, |
||||
the arguments' evaluation order is undefined (i.e. the compiler is free to |
||||
choose any order) and your code should not depend on any particular argument |
||||
evaluation order. |
||||
|
||||
`ASSERT_EQ()` does pointer equality on pointers. If used on two C strings, it |
||||
tests if they are in the same memory location, not if they have the same value. |
||||
Therefore, if you want to compare C strings (e.g. `const char*`) by value, use |
||||
`ASSERT_STREQ()` , which will be described later on. In particular, to assert |
||||
that a C string is `NULL`, use `ASSERT_STREQ(NULL, c_string)` . However, to |
||||
compare two `string` objects, you should use `ASSERT_EQ`. |
||||
|
||||
Macros in this section work with both narrow and wide string objects (`string` |
||||
and `wstring`). |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## String Comparison ## |
||||
|
||||
The assertions in this group compare two **C strings**. If you want to compare |
||||
two `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_STREQ(`_expected\_str_`, `_actual\_str_`);` | `EXPECT_STREQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content | |
||||
| `ASSERT_STRNE(`_str1_`, `_str2_`);` | `EXPECT_STRNE(`_str1_`, `_str2_`);` | the two C strings have different content | |
||||
| `ASSERT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);`| `EXPECT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content, ignoring case | |
||||
| `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case | |
||||
|
||||
Note that "CASE" in an assertion name means that case is ignored. |
||||
|
||||
`*STREQ*` and `*STRNE*` also accept wide C strings (`wchar_t*`). If a |
||||
comparison of two wide strings fails, their values will be printed as UTF-8 |
||||
narrow strings. |
||||
|
||||
A `NULL` pointer and an empty string are considered _different_. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
See also: For more string comparison tricks (substring, prefix, suffix, and |
||||
regular expression matching, for example), see the [AdvancedGuide Advanced |
||||
Google Test Guide]. |
||||
|
||||
# Simple Tests # |
||||
|
||||
To create a test: |
||||
1. Use the `TEST()` macro to define and name a test function, These are ordinary C++ functions that don't return a value. |
||||
1. In this function, along with any valid C++ statements you want to include, use the various Google Test assertions to check values. |
||||
1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds. |
||||
|
||||
``` |
||||
TEST(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
|
||||
`TEST()` arguments go from general to specific. The _first_ argument is the |
||||
name of the test case, and the _second_ argument is the test's name within the |
||||
test case. Remember that a test case can contain any number of individual |
||||
tests. A test's _full name_ consists of its containing test case and its |
||||
individual name. Tests from different test cases can have the same individual |
||||
name. |
||||
|
||||
For example, let's take a simple integer function: |
||||
``` |
||||
int Factorial(int n); // Returns the factorial of n |
||||
``` |
||||
|
||||
A test case for this function might look like: |
||||
``` |
||||
// Tests factorial of 0. |
||||
TEST(FactorialTest, HandlesZeroInput) { |
||||
EXPECT_EQ(1, Factorial(0)); |
||||
} |
||||
|
||||
// Tests factorial of positive numbers. |
||||
TEST(FactorialTest, HandlesPositiveInput) { |
||||
EXPECT_EQ(1, Factorial(1)); |
||||
EXPECT_EQ(2, Factorial(2)); |
||||
EXPECT_EQ(6, Factorial(3)); |
||||
EXPECT_EQ(40320, Factorial(8)); |
||||
} |
||||
``` |
||||
|
||||
Google Test groups the test results by test cases, so logically-related tests |
||||
should be in the same test case; in other words, the first argument to their |
||||
`TEST()` should be the same. In the above example, we have two tests, |
||||
`HandlesZeroInput` and `HandlesPositiveInput`, that belong to the same test |
||||
case `FactorialTest`. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Test Fixtures: Using the Same Data Configuration for Multiple Tests # |
||||
|
||||
If you find yourself writing two or more tests that operate on similar data, |
||||
you can use a _test fixture_. It allows you to reuse the same configuration of |
||||
objects for several different tests. |
||||
|
||||
To create a fixture, just: |
||||
1. Derive a class from `::testing::Test` . Start its body with `protected:` or `public:` as we'll want to access fixture members from sub-classes. |
||||
1. Inside the class, declare any objects you plan to use. |
||||
1. If necessary, write a default constructor or `SetUp()` function to prepare the objects for each test. A common mistake is to spell `SetUp()` as `Setup()` with a small `u` - don't let that happen to you. |
||||
1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read this [FAQ entry](http://code.google.com/p/googletest/wiki/V1_5_FAQ#Should_I_use_the_constructor/destructor_of_the_test_fixture_or_t). |
||||
1. If needed, define subroutines for your tests to share. |
||||
|
||||
When using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to |
||||
access objects and subroutines in the test fixture: |
||||
``` |
||||
TEST_F(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
Like `TEST()`, the first argument is the test case name, but for `TEST_F()` |
||||
this must be the name of the test fixture class. You've probably guessed: `_F` |
||||
is for fixture. |
||||
|
||||
Unfortunately, the C++ macro system does not allow us to create a single macro |
||||
that can handle both types of tests. Using the wrong macro causes a compiler |
||||
error. |
||||
|
||||
Also, you must first define a test fixture class before using it in a |
||||
`TEST_F()`, or you'll get the compiler error "`virtual outside class |
||||
declaration`". |
||||
|
||||
For each test defined with `TEST_F()`, Google Test will: |
||||
1. Create a _fresh_ test fixture at runtime |
||||
1. Immediately initialize it via `SetUp()` , |
||||
1. Run the test |
||||
1. Clean up by calling `TearDown()` |
||||
1. Delete the test fixture. Note that different tests in the same test case have different test fixture objects, and Google Test always deletes a test fixture before it creates the next one. Google Test does not reuse the same test fixture for multiple tests. Any changes one test makes to the fixture do not affect other tests. |
||||
|
||||
As an example, let's write tests for a FIFO queue class named `Queue`, which |
||||
has the following interface: |
||||
``` |
||||
template <typename E> // E is the element type. |
||||
class Queue { |
||||
public: |
||||
Queue(); |
||||
void Enqueue(const E& element); |
||||
E* Dequeue(); // Returns NULL if the queue is empty. |
||||
size_t size() const; |
||||
... |
||||
}; |
||||
``` |
||||
|
||||
First, define a fixture class. By convention, you should give it the name |
||||
`FooTest` where `Foo` is the class being tested. |
||||
``` |
||||
class QueueTest : public ::testing::Test { |
||||
protected: |
||||
virtual void SetUp() { |
||||
q1_.Enqueue(1); |
||||
q2_.Enqueue(2); |
||||
q2_.Enqueue(3); |
||||
} |
||||
|
||||
// virtual void TearDown() {} |
||||
|
||||
Queue<int> q0_; |
||||
Queue<int> q1_; |
||||
Queue<int> q2_; |
||||
}; |
||||
``` |
||||
|
||||
In this case, `TearDown()` is not needed since we don't have to clean up after |
||||
each test, other than what's already done by the destructor. |
||||
|
||||
Now we'll write tests using `TEST_F()` and this fixture. |
||||
``` |
||||
TEST_F(QueueTest, IsEmptyInitially) { |
||||
EXPECT_EQ(0, q0_.size()); |
||||
} |
||||
|
||||
TEST_F(QueueTest, DequeueWorks) { |
||||
int* n = q0_.Dequeue(); |
||||
EXPECT_EQ(NULL, n); |
||||
|
||||
n = q1_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(1, *n); |
||||
EXPECT_EQ(0, q1_.size()); |
||||
delete n; |
||||
|
||||
n = q2_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(2, *n); |
||||
EXPECT_EQ(1, q2_.size()); |
||||
delete n; |
||||
} |
||||
``` |
||||
|
||||
The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is |
||||
to use `EXPECT_*` when you want the test to continue to reveal more errors |
||||
after the assertion failure, and use `ASSERT_*` when continuing after failure |
||||
doesn't make sense. For example, the second assertion in the `Dequeue` test is |
||||
`ASSERT_TRUE(n != NULL)`, as we need to dereference the pointer `n` later, |
||||
which would lead to a segfault when `n` is `NULL`. |
||||
|
||||
When these tests run, the following happens: |
||||
1. Google Test constructs a `QueueTest` object (let's call it `t1` ). |
||||
1. `t1.SetUp()` initializes `t1` . |
||||
1. The first test ( `IsEmptyInitially` ) runs on `t1` . |
||||
1. `t1.TearDown()` cleans up after the test finishes. |
||||
1. `t1` is destructed. |
||||
1. The above steps are repeated on another `QueueTest` object, this time running the `DequeueWorks` test. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
_Note_: Google Test automatically saves all _Google Test_ flags when a test |
||||
object is constructed, and restores them when it is destructed. |
||||
|
||||
# Invoking the Tests # |
||||
|
||||
`TEST()` and `TEST_F()` implicitly register their tests with Google Test. So, unlike with many other C++ testing frameworks, you don't have to re-list all your defined tests in order to run them. |
||||
|
||||
After defining your tests, you can run them with `RUN_ALL_TESTS()` , which returns `0` if all the tests are successful, or `1` otherwise. Note that `RUN_ALL_TESTS()` runs _all tests_ in your link unit -- they can be from different test cases, or even different source files. |
||||
|
||||
When invoked, the `RUN_ALL_TESTS()` macro: |
||||
1. Saves the state of all Google Test flags. |
||||
1. Creates a test fixture object for the first test. |
||||
1. Initializes it via `SetUp()`. |
||||
1. Runs the test on the fixture object. |
||||
1. Cleans up the fixture via `TearDown()`. |
||||
1. Deletes the fixture. |
||||
1. Restores the state of all Google Test flags. |
||||
1. Repeats the above steps for the next test, until all tests have run. |
||||
|
||||
In addition, if the text fixture's constructor generates a fatal failure in |
||||
step 2, there is no point for step 3 - 5 and they are thus skipped. Similarly, |
||||
if step 3 generates a fatal failure, step 4 will be skipped. |
||||
|
||||
_Important_: You must not ignore the return value of `RUN_ALL_TESTS()`, or `gcc` |
||||
will give you a compiler error. The rationale for this design is that the |
||||
automated testing service determines whether a test has passed based on its |
||||
exit code, not on its stdout/stderr output; thus your `main()` function must |
||||
return the value of `RUN_ALL_TESTS()`. |
||||
|
||||
Also, you should call `RUN_ALL_TESTS()` only **once**. Calling it more than once |
||||
conflicts with some advanced Google Test features (e.g. thread-safe death |
||||
tests) and thus is not supported. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Writing the main() Function # |
||||
|
||||
You can start from this boilerplate: |
||||
``` |
||||
#include "this/package/foo.h" |
||||
#include <gtest/gtest.h> |
||||
|
||||
namespace { |
||||
|
||||
// The fixture for testing class Foo. |
||||
class FooTest : public ::testing::Test { |
||||
protected: |
||||
// You can remove any or all of the following functions if its body |
||||
// is empty. |
||||
|
||||
FooTest() { |
||||
// You can do set-up work for each test here. |
||||
} |
||||
|
||||
virtual ~FooTest() { |
||||
// You can do clean-up work that doesn't throw exceptions here. |
||||
} |
||||
|
||||
// If the constructor and destructor are not enough for setting up |
||||
// and cleaning up each test, you can define the following methods: |
||||
|
||||
virtual void SetUp() { |
||||
// Code here will be called immediately after the constructor (right |
||||
// before each test). |
||||
} |
||||
|
||||
virtual void TearDown() { |
||||
// Code here will be called immediately after each test (right |
||||
// before the destructor). |
||||
} |
||||
|
||||
// Objects declared here can be used by all tests in the test case for Foo. |
||||
}; |
||||
|
||||
// Tests that the Foo::Bar() method does Abc. |
||||
TEST_F(FooTest, MethodBarDoesAbc) { |
||||
const string input_filepath = "this/package/testdata/myinputfile.dat"; |
||||
const string output_filepath = "this/package/testdata/myoutputfile.dat"; |
||||
Foo f; |
||||
EXPECT_EQ(0, f.Bar(input_filepath, output_filepath)); |
||||
} |
||||
|
||||
// Tests that Foo does Xyz. |
||||
TEST_F(FooTest, DoesXyz) { |
||||
// Exercises the Xyz feature of Foo. |
||||
} |
||||
|
||||
} // namespace |
||||
|
||||
int main(int argc, char **argv) { |
||||
::testing::InitGoogleTest(&argc, argv); |
||||
return RUN_ALL_TESTS(); |
||||
} |
||||
``` |
||||
|
||||
The `::testing::InitGoogleTest()` function parses the command line for Google |
||||
Test flags, and removes all recognized flags. This allows the user to control a |
||||
test program's behavior via various flags, which we'll cover in [AdvancedGuide](V1_5_AdvancedGuide.md). |
||||
You must call this function before calling `RUN_ALL_TESTS()`, or the flags |
||||
won't be properly initialized. |
||||
|
||||
On Windows, `InitGoogleTest()` also works with wide strings, so it can be used |
||||
in programs compiled in `UNICODE` mode as well. |
||||
|
||||
But maybe you think that writing all those main() functions is too much work? We agree with you completely and that's why Google Test provides a basic implementation of main(). If it fits your needs, then just link your test with gtest\_main library and you are good to go. |
||||
|
||||
## Important note for Visual C++ users ## |
||||
If you put your tests into a library and your `main()` function is in a different library or in your .exe file, those tests will not run. The reason is a [bug](https://connect.microsoft.com/feedback/viewfeedback.aspx?FeedbackID=244410&siteid=210) in Visual C++. When you define your tests, Google Test creates certain static objects to register them. These objects are not referenced from elsewhere but their constructors are still supposed to run. When Visual C++ linker sees that nothing in the library is referenced from other places it throws the library out. You have to reference your library with tests from your main program to keep the linker from discarding it. Here is how to do it. Somewhere in your library code declare a function: |
||||
``` |
||||
__declspec(dllexport) int PullInMyLibrary() { return 0; } |
||||
``` |
||||
If you put your tests in a static library (not DLL) then `__declspec(dllexport)` is not required. Now, in your main program, write a code that invokes that function: |
||||
``` |
||||
int PullInMyLibrary(); |
||||
static int dummy = PullInMyLibrary(); |
||||
``` |
||||
This will keep your tests referenced and will make them register themselves at startup. |
||||
|
||||
In addition, if you define your tests in a static library, add `/OPT:NOREF` to your main program linker options. If you use MSVC++ IDE, go to your .exe project properties/Configuration Properties/Linker/Optimization and set References setting to `Keep Unreferenced Data (/OPT:NOREF)`. This will keep Visual C++ linker from discarding individual symbols generated by your tests from the final executable. |
||||
|
||||
There is one more pitfall, though. If you use Google Test as a static library (that's how it is defined in gtest.vcproj) your tests must also reside in a static library. If you have to have them in a DLL, you _must_ change Google Test to build into a DLL as well. Otherwise your tests will not run correctly or will not run at all. The general conclusion here is: make your life easier - do not write your tests in libraries! |
||||
|
||||
# Where to Go from Here # |
||||
|
||||
Congratulations! You've learned the Google Test basics. You can start writing |
||||
and running Google Test tests, read some [samples](Samples.md), or continue with |
||||
[AdvancedGuide](V1_5_AdvancedGuide.md), which describes many more useful Google Test features. |
||||
|
||||
# Known Limitations # |
||||
|
||||
Google Test is designed to be thread-safe. The implementation is |
||||
thread-safe on systems where the `pthreads` library is available. It |
||||
is currently _unsafe_ to use Google Test assertions from two threads |
||||
concurrently on other systems (e.g. Windows). In most tests this is |
||||
not an issue as usually the assertions are done in the main thread. If |
||||
you want to help, you can volunteer to implement the necessary |
||||
synchronization primitives in `gtest-port.h` for your platform. |
@ -0,0 +1,177 @@ |
||||
|
||||
|
||||
<b>P</b>ump is <b>U</b>seful for <b>M</b>eta <b>P</b>rogramming. |
||||
|
||||
# The Problem # |
||||
|
||||
Template and macro libraries often need to define many classes, |
||||
functions, or macros that vary only (or almost only) in the number of |
||||
arguments they take. It's a lot of repetitive, mechanical, and |
||||
error-prone work. |
||||
|
||||
Variadic templates and variadic macros can alleviate the problem. |
||||
However, while both are being considered by the C++ committee, neither |
||||
is in the standard yet or widely supported by compilers. Thus they |
||||
are often not a good choice, especially when your code needs to be |
||||
portable. And their capabilities are still limited. |
||||
|
||||
As a result, authors of such libraries often have to write scripts to |
||||
generate their implementation. However, our experience is that it's |
||||
tedious to write such scripts, which tend to reflect the structure of |
||||
the generated code poorly and are often hard to read and edit. For |
||||
example, a small change needed in the generated code may require some |
||||
non-intuitive, non-trivial changes in the script. This is especially |
||||
painful when experimenting with the code. |
||||
|
||||
# Our Solution # |
||||
|
||||
Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta |
||||
Programming, or Practical Utility for Meta Programming, whichever you |
||||
prefer) is a simple meta-programming tool for C++. The idea is that a |
||||
programmer writes a `foo.pump` file which contains C++ code plus meta |
||||
code that manipulates the C++ code. The meta code can handle |
||||
iterations over a range, nested iterations, local meta variable |
||||
definitions, simple arithmetic, and conditional expressions. You can |
||||
view it as a small Domain-Specific Language. The meta language is |
||||
designed to be non-intrusive (s.t. it won't confuse Emacs' C++ mode, |
||||
for example) and concise, making Pump code intuitive and easy to |
||||
maintain. |
||||
|
||||
## Highlights ## |
||||
|
||||
* The implementation is in a single Python script and thus ultra portable: no build or installation is needed and it works cross platforms. |
||||
* Pump tries to be smart with respect to [Google's style guide](http://code.google.com/p/google-styleguide/): it breaks long lines (easy to have when they are generated) at acceptable places to fit within 80 columns and indent the continuation lines correctly. |
||||
* The format is human-readable and more concise than XML. |
||||
* The format works relatively well with Emacs' C++ mode. |
||||
|
||||
## Examples ## |
||||
|
||||
The following Pump code (where meta keywords start with `$`, `[[` and `]]` are meta brackets, and `$$` starts a meta comment that ends with the line): |
||||
|
||||
``` |
||||
$var n = 3 $$ Defines a meta variable n. |
||||
$range i 0..n $$ Declares the range of meta iterator i (inclusive). |
||||
$for i [[ |
||||
$$ Meta loop. |
||||
// Foo$i does blah for $i-ary predicates. |
||||
$range j 1..i |
||||
template <size_t N $for j [[, typename A$j]]> |
||||
class Foo$i { |
||||
$if i == 0 [[ |
||||
blah a; |
||||
]] $elif i <= 2 [[ |
||||
blah b; |
||||
]] $else [[ |
||||
blah c; |
||||
]] |
||||
}; |
||||
|
||||
]] |
||||
``` |
||||
|
||||
will be translated by the Pump compiler to: |
||||
|
||||
``` |
||||
// Foo0 does blah for 0-ary predicates. |
||||
template <size_t N> |
||||
class Foo0 { |
||||
blah a; |
||||
}; |
||||
|
||||
// Foo1 does blah for 1-ary predicates. |
||||
template <size_t N, typename A1> |
||||
class Foo1 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo2 does blah for 2-ary predicates. |
||||
template <size_t N, typename A1, typename A2> |
||||
class Foo2 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo3 does blah for 3-ary predicates. |
||||
template <size_t N, typename A1, typename A2, typename A3> |
||||
class Foo3 { |
||||
blah c; |
||||
}; |
||||
``` |
||||
|
||||
In another example, |
||||
|
||||
``` |
||||
$range i 1..n |
||||
Func($for i + [[a$i]]); |
||||
$$ The text between i and [[ is the separator between iterations. |
||||
``` |
||||
|
||||
will generate one of the following lines (without the comments), depending on the value of `n`: |
||||
|
||||
``` |
||||
Func(); // If n is 0. |
||||
Func(a1); // If n is 1. |
||||
Func(a1 + a2); // If n is 2. |
||||
Func(a1 + a2 + a3); // If n is 3. |
||||
// And so on... |
||||
``` |
||||
|
||||
## Constructs ## |
||||
|
||||
We support the following meta programming constructs: |
||||
|
||||
| `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. | |
||||
|:----------------|:-----------------------------------------------------------------------------------------------| |
||||
| $range id exp..exp | Sets the range of an iteration variable, which can be reused in multiple loops later. | |
||||
| $for id sep [[code ](.md)] | Iteration. The range of `id` must have been defined earlier. `$id` is valid in `code`. | |
||||
| `$($)` | Generates a single `$` character. | |
||||
| `$id` | Value of the named constant or iteration variable. | |
||||
| `$(exp)` | Value of the expression. | |
||||
| `$if exp [[ code ]] else_branch` | Conditional. | |
||||
| `[[ code ]]` | Meta lexical block. | |
||||
| `cpp_code` | Raw C++ code. | |
||||
| `$$ comment` | Meta comment. | |
||||
|
||||
**Note:** To give the user some freedom in formatting the Pump source |
||||
code, Pump ignores a new-line character if it's right after `$for foo` |
||||
or next to `[[` or `]]`. Without this rule you'll often be forced to write |
||||
very long lines to get the desired output. Therefore sometimes you may |
||||
need to insert an extra new-line in such places for a new-line to show |
||||
up in your output. |
||||
|
||||
## Grammar ## |
||||
|
||||
``` |
||||
code ::= atomic_code* |
||||
atomic_code ::= $var id = exp |
||||
| $var id = [[ code ]] |
||||
| $range id exp..exp |
||||
| $for id sep [[ code ]] |
||||
| $($) |
||||
| $id |
||||
| $(exp) |
||||
| $if exp [[ code ]] else_branch |
||||
| [[ code ]] |
||||
| cpp_code |
||||
sep ::= cpp_code | empty_string |
||||
else_branch ::= $else [[ code ]] |
||||
| $elif exp [[ code ]] else_branch |
||||
| empty_string |
||||
exp ::= simple_expression_in_Python_syntax |
||||
``` |
||||
|
||||
## Code ## |
||||
|
||||
You can find the source code of Pump in [scripts/pump.py](http://code.google.com/p/googletest/source/browse/trunk/scripts/pump.py). It is still |
||||
very unpolished and lacks automated tests, although it has been |
||||
successfully used many times. If you find a chance to use it in your |
||||
project, please let us know what you think! We also welcome help on |
||||
improving Pump. |
||||
|
||||
## Real Examples ## |
||||
|
||||
You can find real-world applications of Pump in [Google Test](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgoogletest\.googlecode\.com) and [Google Mock](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgooglemock\.googlecode\.com). The source file `foo.h.pump` generates `foo.h`. |
||||
|
||||
## Tips ## |
||||
|
||||
* If a meta variable is followed by a letter or digit, you can separate them using `[[]]`, which inserts an empty string. For example `Foo$j[[]]Helper` generate `Foo1Helper` when `j` is 1. |
||||
* To avoid extra-long Pump source lines, you can break a line anywhere you want by inserting `[[]]` followed by a new line. Since any new-line character next to `[[` or `]]` is ignored, the generated code won't contain this new line. |
@ -0,0 +1,93 @@ |
||||
|
||||
|
||||
This guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X. This tutorial begins by quickly explaining what to do for experienced users. After the quick start, the guide goes provides additional explanation about each step. |
||||
|
||||
# Quick Start # |
||||
|
||||
Here is the quick guide for using Google Test in your Xcode project. |
||||
|
||||
1. Download the source from the [website](http://code.google.com/p/googletest) using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only` |
||||
1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtest.framework. |
||||
1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests" |
||||
1. Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build phase of "UnitTests" |
||||
1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests" |
||||
1. Edit the "UnitTests" executable and add an environment variable named "DYLD\_FRAMEWORK\_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. |
||||
1. Build and Go |
||||
|
||||
The following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations. |
||||
|
||||
# Get the Source # |
||||
|
||||
Currently, the gtest.framework discussed here isn't available in a tagged release of Google Test, it is only available in the trunk. As explained at the Google Test [site](http://code.google.com/p/googletest/source/checkout">svn), you can get the code from anonymous SVN with this command: |
||||
|
||||
``` |
||||
svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only |
||||
``` |
||||
|
||||
Alternatively, if you are working with Subversion in your own code base, you can add Google Test as an external dependency to your own Subversion repository. By following this approach, everyone that checks out your svn repository will also receive a copy of Google Test (a specific version, if you wish) without having to check it out explicitly. This makes the set up of your project simpler and reduces the copied code in the repository. |
||||
|
||||
To use `svn:externals`, decide where you would like to have the external source reside. You might choose to put the external source inside the trunk, because you want it to be part of the branch when you make a release. However, keeping it outside the trunk in a version-tagged directory called something like `third-party/googletest/1.0.1`, is another option. Once the location is established, use `svn propedit svn:externals _directory_` to set the svn:externals property on a directory in your repository. This directory won't contain the code, but be its versioned parent directory. |
||||
|
||||
The command `svn propedit` will bring up your Subversion editor, making editing the long, (potentially multi-line) property simpler. This same method can be used to check out a tagged branch, by using the appropriate URL (e.g. `http://googletest.googlecode.com/svn/tags/release-1.0.1`). Additionally, the svn:externals property allows the specification of a particular revision of the trunk with the `-r_##_` option (e.g. `externals/src/googletest -r60 http://googletest.googlecode.com/svn/trunk`). |
||||
|
||||
Here is an example of using the svn:externals properties on a trunk (read via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/externals/src/googletest/` directory. |
||||
|
||||
``` |
||||
[Computer:svn] user$ svn propget svn:externals trunk |
||||
externals/src/googletest http://googletest.googlecode.com/svn/trunk |
||||
``` |
||||
|
||||
# Add the Framework to Your Project # |
||||
|
||||
The next step is to build and add the gtest.framework to your own project. This guide describes two common ways below. |
||||
|
||||
* **Option 1** --- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test trunk) and build the framework manually. Then, add the built framework into your project using the "Add->Existing Framework..." from the context menu or "Project->Add..." from the main menu. The gtest.framework is relocatable and contains the headers and object code that you'll need to make tests. This method requires rebuilding every time you upgrade Google Test in your project. |
||||
* **Option 2** --- If you are going to be living off the trunk of Google Test, incorporating its latest features into your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework every time the source updates. to do this, you'll need to add the gtest.xcodeproj file, not the framework itself, to your own Xcode project. Then, from the build products that are revealed by the project's disclosure triangle, you can find the gtest.framework, which can be added to your targets (discussed below). |
||||
|
||||
# Make a Test Target # |
||||
|
||||
To start writing tests, make a new "Shell Tool" target. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" build phase of the target. |
||||
|
||||
Next, you'll want to add gtest.framework in two different ways, depending upon which option you chose above. |
||||
|
||||
* **Option 1** --- During compilation, Xcode will need to know that you are linking against the gtest.framework. Add the gtest.framework to the "Link Binary with Libraries" build phase of your test target. This will include the Google Test headers in your header search path, and will tell the linker where to find the library. |
||||
* **Option 2** --- If your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary with Libraries" build phase of your test target. In addition, you'll want to add the gtest.framework as a dependency to your unit test target. This way, Xcode will make sure that gtest.framework is up to date, every time your build your target. Finally, if you don't share build directories with Google Test, you'll have to copy the gtest.framework into your own build products directory using a "Run Script" build phase. |
||||
|
||||
# Set Up the Executable Run Environment # |
||||
|
||||
Since the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Frameworks` directory, in which to place gtest.framework. Instead, the dynamic linker must be told at runtime to search for the framework in another location. This can be accomplished by setting the "DYLD\_FRAMEWORK\_PATH" environment variable in the "Edit Active Executable ..." Arguments tab, under "Variables to be set in the environment:". The path for this value is the path (relative or absolute) of the directory containing the gtest.framework. |
||||
|
||||
If you haven't set up the DYLD\_FRAMEWORK\_PATH, correctly, you might get a message like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-15 06:23:57 -0600.] |
||||
dyld: Library not loaded: @loader_path/../Frameworks/gtest.framework/Versions/A/gtest |
||||
Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest |
||||
Reason: image not found |
||||
``` |
||||
|
||||
To correct this problem, got to the directory containing the executable named in "Referenced from:" value in the error message above. Then, with the terminal in this location, find the relative path to the directory containing the gtest.framework. That is the value you'll need to set as the DYLD\_FRAMEWORK\_PATH. |
||||
|
||||
# Build and Go # |
||||
|
||||
Now, when you click "Build and Go", the test will be executed. Dumping out something like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-06 06:36:13 -0600.] |
||||
[==========] Running 2 tests from 1 test case. |
||||
[----------] Global test environment set-up. |
||||
[----------] 2 tests from WidgetInitializerTest |
||||
[ RUN ] WidgetInitializerTest.TestConstructor |
||||
[ OK ] WidgetInitializerTest.TestConstructor |
||||
[ RUN ] WidgetInitializerTest.TestConversion |
||||
[ OK ] WidgetInitializerTest.TestConversion |
||||
[----------] Global test environment tear-down |
||||
[==========] 2 tests from 1 test case ran. |
||||
[ PASSED ] 2 tests. |
||||
|
||||
The Debugger has exited with status 0. |
||||
``` |
||||
|
||||
# Summary # |
||||
|
||||
Unit testing is a valuable way to ensure your data model stays valid even during rapid development or refactoring. The Google Testing Framework is a great unit testing framework for C and C++ which integrates well with an Xcode development environment. |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,14 @@ |
||||
This page lists all documentation wiki pages for Google Test **1.6** |
||||
-- **if you use a released version of Google Test, please read the |
||||
documentation for that specific version instead.** |
||||
|
||||
* [Primer](V1_6_Primer.md) -- start here if you are new to Google Test. |
||||
* [Samples](V1_6_Samples.md) -- learn from examples. |
||||
* [AdvancedGuide](V1_6_AdvancedGuide.md) -- learn more about Google Test. |
||||
* [XcodeGuide](V1_6_XcodeGuide.md) -- how to use Google Test in Xcode on Mac. |
||||
* [Frequently-Asked Questions](V1_6_FAQ.md) -- check here before asking a question on the mailing list. |
||||
|
||||
To contribute code to Google Test, read: |
||||
|
||||
* [DevGuide](DevGuide.md) -- read this _before_ writing your first patch. |
||||
* [PumpManual](V1_6_PumpManual.md) -- how we generate some of Google Test's source files. |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,501 @@ |
||||
|
||||
|
||||
# Introduction: Why Google C++ Testing Framework? # |
||||
|
||||
_Google C++ Testing Framework_ helps you write better C++ tests. |
||||
|
||||
No matter whether you work on Linux, Windows, or a Mac, if you write C++ code, |
||||
Google Test can help you. |
||||
|
||||
So what makes a good test, and how does Google C++ Testing Framework fit in? We believe: |
||||
1. Tests should be _independent_ and _repeatable_. It's a pain to debug a test that succeeds or fails as a result of other tests. Google C++ Testing Framework isolates the tests by running each of them on a different object. When a test fails, Google C++ Testing Framework allows you to run it in isolation for quick debugging. |
||||
1. Tests should be well _organized_ and reflect the structure of the tested code. Google C++ Testing Framework groups related tests into test cases that can share data and subroutines. This common pattern is easy to recognize and makes tests easy to maintain. Such consistency is especially helpful when people switch projects and start to work on a new code base. |
||||
1. Tests should be _portable_ and _reusable_. The open-source community has a lot of code that is platform-neutral, its tests should also be platform-neutral. Google C++ Testing Framework works on different OSes, with different compilers (gcc, MSVC, and others), with or without exceptions, so Google C++ Testing Framework tests can easily work with a variety of configurations. (Note that the current release only contains build scripts for Linux - we are actively working on scripts for other platforms.) |
||||
1. When tests fail, they should provide as much _information_ about the problem as possible. Google C++ Testing Framework doesn't stop at the first test failure. Instead, it only stops the current test and continues with the next. You can also set up tests that report non-fatal failures after which the current test continues. Thus, you can detect and fix multiple bugs in a single run-edit-compile cycle. |
||||
1. The testing framework should liberate test writers from housekeeping chores and let them focus on the test _content_. Google C++ Testing Framework automatically keeps track of all tests defined, and doesn't require the user to enumerate them in order to run them. |
||||
1. Tests should be _fast_. With Google C++ Testing Framework, you can reuse shared resources across tests and pay for the set-up/tear-down only once, without making tests depend on each other. |
||||
|
||||
Since Google C++ Testing Framework is based on the popular xUnit |
||||
architecture, you'll feel right at home if you've used JUnit or PyUnit before. |
||||
If not, it will take you about 10 minutes to learn the basics and get started. |
||||
So let's go! |
||||
|
||||
_Note:_ We sometimes refer to Google C++ Testing Framework informally |
||||
as _Google Test_. |
||||
|
||||
# Setting up a New Test Project # |
||||
|
||||
To write a test program using Google Test, you need to compile Google |
||||
Test into a library and link your test with it. We provide build |
||||
files for some popular build systems: `msvc/` for Visual Studio, |
||||
`xcode/` for Mac Xcode, `make/` for GNU make, `codegear/` for Borland |
||||
C++ Builder, and the autotools script (deprecated) and |
||||
`CMakeLists.txt` for CMake (recommended) in the Google Test root |
||||
directory. If your build system is not on this list, you can take a |
||||
look at `make/Makefile` to learn how Google Test should be compiled |
||||
(basically you want to compile `src/gtest-all.cc` with `GTEST_ROOT` |
||||
and `GTEST_ROOT/include` in the header search path, where `GTEST_ROOT` |
||||
is the Google Test root directory). |
||||
|
||||
Once you are able to compile the Google Test library, you should |
||||
create a project or build target for your test program. Make sure you |
||||
have `GTEST_ROOT/include` in the header search path so that the |
||||
compiler can find `"gtest/gtest.h"` when compiling your test. Set up |
||||
your test project to link with the Google Test library (for example, |
||||
in Visual Studio, this is done by adding a dependency on |
||||
`gtest.vcproj`). |
||||
|
||||
If you still have questions, take a look at how Google Test's own |
||||
tests are built and use them as examples. |
||||
|
||||
# Basic Concepts # |
||||
|
||||
When using Google Test, you start by writing _assertions_, which are statements |
||||
that check whether a condition is true. An assertion's result can be _success_, |
||||
_nonfatal failure_, or _fatal failure_. If a fatal failure occurs, it aborts |
||||
the current function; otherwise the program continues normally. |
||||
|
||||
_Tests_ use assertions to verify the tested code's behavior. If a test crashes |
||||
or has a failed assertion, then it _fails_; otherwise it _succeeds_. |
||||
|
||||
A _test case_ contains one or many tests. You should group your tests into test |
||||
cases that reflect the structure of the tested code. When multiple tests in a |
||||
test case need to share common objects and subroutines, you can put them into a |
||||
_test fixture_ class. |
||||
|
||||
A _test program_ can contain multiple test cases. |
||||
|
||||
We'll now explain how to write a test program, starting at the individual |
||||
assertion level and building up to tests and test cases. |
||||
|
||||
# Assertions # |
||||
|
||||
Google Test assertions are macros that resemble function calls. You test a |
||||
class or function by making assertions about its behavior. When an assertion |
||||
fails, Google Test prints the assertion's source file and line number location, |
||||
along with a failure message. You may also supply a custom failure message |
||||
which will be appended to Google Test's message. |
||||
|
||||
The assertions come in pairs that test the same thing but have different |
||||
effects on the current function. `ASSERT_*` versions generate fatal failures |
||||
when they fail, and **abort the current function**. `EXPECT_*` versions generate |
||||
nonfatal failures, which don't abort the current function. Usually `EXPECT_*` |
||||
are preferred, as they allow more than one failures to be reported in a test. |
||||
However, you should use `ASSERT_*` if it doesn't make sense to continue when |
||||
the assertion in question fails. |
||||
|
||||
Since a failed `ASSERT_*` returns from the current function immediately, |
||||
possibly skipping clean-up code that comes after it, it may cause a space leak. |
||||
Depending on the nature of the leak, it may or may not be worth fixing - so |
||||
keep this in mind if you get a heap checker error in addition to assertion |
||||
errors. |
||||
|
||||
To provide a custom failure message, simply stream it into the macro using the |
||||
`<<` operator, or a sequence of such operators. An example: |
||||
``` |
||||
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length"; |
||||
|
||||
for (int i = 0; i < x.size(); ++i) { |
||||
EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i; |
||||
} |
||||
``` |
||||
|
||||
Anything that can be streamed to an `ostream` can be streamed to an assertion |
||||
macro--in particular, C strings and `string` objects. If a wide string |
||||
(`wchar_t*`, `TCHAR*` in `UNICODE` mode on Windows, or `std::wstring`) is |
||||
streamed to an assertion, it will be translated to UTF-8 when printed. |
||||
|
||||
## Basic Assertions ## |
||||
|
||||
These assertions do basic true/false condition testing. |
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_TRUE(`_condition_`)`; | `EXPECT_TRUE(`_condition_`)`; | _condition_ is true | |
||||
| `ASSERT_FALSE(`_condition_`)`; | `EXPECT_FALSE(`_condition_`)`; | _condition_ is false | |
||||
|
||||
Remember, when they fail, `ASSERT_*` yields a fatal failure and |
||||
returns from the current function, while `EXPECT_*` yields a nonfatal |
||||
failure, allowing the function to continue running. In either case, an |
||||
assertion failure means its containing test fails. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## Binary Comparison ## |
||||
|
||||
This section describes assertions that compare two values. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
|`ASSERT_EQ(`_expected_`, `_actual_`);`|`EXPECT_EQ(`_expected_`, `_actual_`);`| _expected_ `==` _actual_ | |
||||
|`ASSERT_NE(`_val1_`, `_val2_`);` |`EXPECT_NE(`_val1_`, `_val2_`);` | _val1_ `!=` _val2_ | |
||||
|`ASSERT_LT(`_val1_`, `_val2_`);` |`EXPECT_LT(`_val1_`, `_val2_`);` | _val1_ `<` _val2_ | |
||||
|`ASSERT_LE(`_val1_`, `_val2_`);` |`EXPECT_LE(`_val1_`, `_val2_`);` | _val1_ `<=` _val2_ | |
||||
|`ASSERT_GT(`_val1_`, `_val2_`);` |`EXPECT_GT(`_val1_`, `_val2_`);` | _val1_ `>` _val2_ | |
||||
|`ASSERT_GE(`_val1_`, `_val2_`);` |`EXPECT_GE(`_val1_`, `_val2_`);` | _val1_ `>=` _val2_ | |
||||
|
||||
In the event of a failure, Google Test prints both _val1_ and _val2_ |
||||
. In `ASSERT_EQ*` and `EXPECT_EQ*` (and all other equality assertions |
||||
we'll introduce later), you should put the expression you want to test |
||||
in the position of _actual_, and put its expected value in _expected_, |
||||
as Google Test's failure messages are optimized for this convention. |
||||
|
||||
Value arguments must be comparable by the assertion's comparison |
||||
operator or you'll get a compiler error. We used to require the |
||||
arguments to support the `<<` operator for streaming to an `ostream`, |
||||
but it's no longer necessary since v1.6.0 (if `<<` is supported, it |
||||
will be called to print the arguments when the assertion fails; |
||||
otherwise Google Test will attempt to print them in the best way it |
||||
can. For more details and how to customize the printing of the |
||||
arguments, see this Google Mock [recipe](http://code.google.com/p/googlemock/wiki/CookBook#Teaching_Google_Mock_How_to_Print_Your_Values).). |
||||
|
||||
These assertions can work with a user-defined type, but only if you define the |
||||
corresponding comparison operator (e.g. `==`, `<`, etc). If the corresponding |
||||
operator is defined, prefer using the `ASSERT_*()` macros because they will |
||||
print out not only the result of the comparison, but the two operands as well. |
||||
|
||||
Arguments are always evaluated exactly once. Therefore, it's OK for the |
||||
arguments to have side effects. However, as with any ordinary C/C++ function, |
||||
the arguments' evaluation order is undefined (i.e. the compiler is free to |
||||
choose any order) and your code should not depend on any particular argument |
||||
evaluation order. |
||||
|
||||
`ASSERT_EQ()` does pointer equality on pointers. If used on two C strings, it |
||||
tests if they are in the same memory location, not if they have the same value. |
||||
Therefore, if you want to compare C strings (e.g. `const char*`) by value, use |
||||
`ASSERT_STREQ()` , which will be described later on. In particular, to assert |
||||
that a C string is `NULL`, use `ASSERT_STREQ(NULL, c_string)` . However, to |
||||
compare two `string` objects, you should use `ASSERT_EQ`. |
||||
|
||||
Macros in this section work with both narrow and wide string objects (`string` |
||||
and `wstring`). |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## String Comparison ## |
||||
|
||||
The assertions in this group compare two **C strings**. If you want to compare |
||||
two `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_STREQ(`_expected\_str_`, `_actual\_str_`);` | `EXPECT_STREQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content | |
||||
| `ASSERT_STRNE(`_str1_`, `_str2_`);` | `EXPECT_STRNE(`_str1_`, `_str2_`);` | the two C strings have different content | |
||||
| `ASSERT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);`| `EXPECT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content, ignoring case | |
||||
| `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case | |
||||
|
||||
Note that "CASE" in an assertion name means that case is ignored. |
||||
|
||||
`*STREQ*` and `*STRNE*` also accept wide C strings (`wchar_t*`). If a |
||||
comparison of two wide strings fails, their values will be printed as UTF-8 |
||||
narrow strings. |
||||
|
||||
A `NULL` pointer and an empty string are considered _different_. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
See also: For more string comparison tricks (substring, prefix, suffix, and |
||||
regular expression matching, for example), see the [Advanced Google Test Guide](V1_6_AdvancedGuide.md). |
||||
|
||||
# Simple Tests # |
||||
|
||||
To create a test: |
||||
1. Use the `TEST()` macro to define and name a test function, These are ordinary C++ functions that don't return a value. |
||||
1. In this function, along with any valid C++ statements you want to include, use the various Google Test assertions to check values. |
||||
1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds. |
||||
|
||||
``` |
||||
TEST(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
|
||||
`TEST()` arguments go from general to specific. The _first_ argument is the |
||||
name of the test case, and the _second_ argument is the test's name within the |
||||
test case. Both names must be valid C++ identifiers, and they should not contain underscore (`_`). A test's _full name_ consists of its containing test case and its |
||||
individual name. Tests from different test cases can have the same individual |
||||
name. |
||||
|
||||
For example, let's take a simple integer function: |
||||
``` |
||||
int Factorial(int n); // Returns the factorial of n |
||||
``` |
||||
|
||||
A test case for this function might look like: |
||||
``` |
||||
// Tests factorial of 0. |
||||
TEST(FactorialTest, HandlesZeroInput) { |
||||
EXPECT_EQ(1, Factorial(0)); |
||||
} |
||||
|
||||
// Tests factorial of positive numbers. |
||||
TEST(FactorialTest, HandlesPositiveInput) { |
||||
EXPECT_EQ(1, Factorial(1)); |
||||
EXPECT_EQ(2, Factorial(2)); |
||||
EXPECT_EQ(6, Factorial(3)); |
||||
EXPECT_EQ(40320, Factorial(8)); |
||||
} |
||||
``` |
||||
|
||||
Google Test groups the test results by test cases, so logically-related tests |
||||
should be in the same test case; in other words, the first argument to their |
||||
`TEST()` should be the same. In the above example, we have two tests, |
||||
`HandlesZeroInput` and `HandlesPositiveInput`, that belong to the same test |
||||
case `FactorialTest`. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Test Fixtures: Using the Same Data Configuration for Multiple Tests # |
||||
|
||||
If you find yourself writing two or more tests that operate on similar data, |
||||
you can use a _test fixture_. It allows you to reuse the same configuration of |
||||
objects for several different tests. |
||||
|
||||
To create a fixture, just: |
||||
1. Derive a class from `::testing::Test` . Start its body with `protected:` or `public:` as we'll want to access fixture members from sub-classes. |
||||
1. Inside the class, declare any objects you plan to use. |
||||
1. If necessary, write a default constructor or `SetUp()` function to prepare the objects for each test. A common mistake is to spell `SetUp()` as `Setup()` with a small `u` - don't let that happen to you. |
||||
1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read this [FAQ entry](http://code.google.com/p/googletest/wiki/V1_6_FAQ#Should_I_use_the_constructor/destructor_of_the_test_fixture_or_t). |
||||
1. If needed, define subroutines for your tests to share. |
||||
|
||||
When using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to |
||||
access objects and subroutines in the test fixture: |
||||
``` |
||||
TEST_F(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
Like `TEST()`, the first argument is the test case name, but for `TEST_F()` |
||||
this must be the name of the test fixture class. You've probably guessed: `_F` |
||||
is for fixture. |
||||
|
||||
Unfortunately, the C++ macro system does not allow us to create a single macro |
||||
that can handle both types of tests. Using the wrong macro causes a compiler |
||||
error. |
||||
|
||||
Also, you must first define a test fixture class before using it in a |
||||
`TEST_F()`, or you'll get the compiler error "`virtual outside class |
||||
declaration`". |
||||
|
||||
For each test defined with `TEST_F()`, Google Test will: |
||||
1. Create a _fresh_ test fixture at runtime |
||||
1. Immediately initialize it via `SetUp()` , |
||||
1. Run the test |
||||
1. Clean up by calling `TearDown()` |
||||
1. Delete the test fixture. Note that different tests in the same test case have different test fixture objects, and Google Test always deletes a test fixture before it creates the next one. Google Test does not reuse the same test fixture for multiple tests. Any changes one test makes to the fixture do not affect other tests. |
||||
|
||||
As an example, let's write tests for a FIFO queue class named `Queue`, which |
||||
has the following interface: |
||||
``` |
||||
template <typename E> // E is the element type. |
||||
class Queue { |
||||
public: |
||||
Queue(); |
||||
void Enqueue(const E& element); |
||||
E* Dequeue(); // Returns NULL if the queue is empty. |
||||
size_t size() const; |
||||
... |
||||
}; |
||||
``` |
||||
|
||||
First, define a fixture class. By convention, you should give it the name |
||||
`FooTest` where `Foo` is the class being tested. |
||||
``` |
||||
class QueueTest : public ::testing::Test { |
||||
protected: |
||||
virtual void SetUp() { |
||||
q1_.Enqueue(1); |
||||
q2_.Enqueue(2); |
||||
q2_.Enqueue(3); |
||||
} |
||||
|
||||
// virtual void TearDown() {} |
||||
|
||||
Queue<int> q0_; |
||||
Queue<int> q1_; |
||||
Queue<int> q2_; |
||||
}; |
||||
``` |
||||
|
||||
In this case, `TearDown()` is not needed since we don't have to clean up after |
||||
each test, other than what's already done by the destructor. |
||||
|
||||
Now we'll write tests using `TEST_F()` and this fixture. |
||||
``` |
||||
TEST_F(QueueTest, IsEmptyInitially) { |
||||
EXPECT_EQ(0, q0_.size()); |
||||
} |
||||
|
||||
TEST_F(QueueTest, DequeueWorks) { |
||||
int* n = q0_.Dequeue(); |
||||
EXPECT_EQ(NULL, n); |
||||
|
||||
n = q1_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(1, *n); |
||||
EXPECT_EQ(0, q1_.size()); |
||||
delete n; |
||||
|
||||
n = q2_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(2, *n); |
||||
EXPECT_EQ(1, q2_.size()); |
||||
delete n; |
||||
} |
||||
``` |
||||
|
||||
The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is |
||||
to use `EXPECT_*` when you want the test to continue to reveal more errors |
||||
after the assertion failure, and use `ASSERT_*` when continuing after failure |
||||
doesn't make sense. For example, the second assertion in the `Dequeue` test is |
||||
`ASSERT_TRUE(n != NULL)`, as we need to dereference the pointer `n` later, |
||||
which would lead to a segfault when `n` is `NULL`. |
||||
|
||||
When these tests run, the following happens: |
||||
1. Google Test constructs a `QueueTest` object (let's call it `t1` ). |
||||
1. `t1.SetUp()` initializes `t1` . |
||||
1. The first test ( `IsEmptyInitially` ) runs on `t1` . |
||||
1. `t1.TearDown()` cleans up after the test finishes. |
||||
1. `t1` is destructed. |
||||
1. The above steps are repeated on another `QueueTest` object, this time running the `DequeueWorks` test. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
_Note_: Google Test automatically saves all _Google Test_ flags when a test |
||||
object is constructed, and restores them when it is destructed. |
||||
|
||||
# Invoking the Tests # |
||||
|
||||
`TEST()` and `TEST_F()` implicitly register their tests with Google Test. So, unlike with many other C++ testing frameworks, you don't have to re-list all your defined tests in order to run them. |
||||
|
||||
After defining your tests, you can run them with `RUN_ALL_TESTS()` , which returns `0` if all the tests are successful, or `1` otherwise. Note that `RUN_ALL_TESTS()` runs _all tests_ in your link unit -- they can be from different test cases, or even different source files. |
||||
|
||||
When invoked, the `RUN_ALL_TESTS()` macro: |
||||
1. Saves the state of all Google Test flags. |
||||
1. Creates a test fixture object for the first test. |
||||
1. Initializes it via `SetUp()`. |
||||
1. Runs the test on the fixture object. |
||||
1. Cleans up the fixture via `TearDown()`. |
||||
1. Deletes the fixture. |
||||
1. Restores the state of all Google Test flags. |
||||
1. Repeats the above steps for the next test, until all tests have run. |
||||
|
||||
In addition, if the text fixture's constructor generates a fatal failure in |
||||
step 2, there is no point for step 3 - 5 and they are thus skipped. Similarly, |
||||
if step 3 generates a fatal failure, step 4 will be skipped. |
||||
|
||||
_Important_: You must not ignore the return value of `RUN_ALL_TESTS()`, or `gcc` |
||||
will give you a compiler error. The rationale for this design is that the |
||||
automated testing service determines whether a test has passed based on its |
||||
exit code, not on its stdout/stderr output; thus your `main()` function must |
||||
return the value of `RUN_ALL_TESTS()`. |
||||
|
||||
Also, you should call `RUN_ALL_TESTS()` only **once**. Calling it more than once |
||||
conflicts with some advanced Google Test features (e.g. thread-safe death |
||||
tests) and thus is not supported. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Writing the main() Function # |
||||
|
||||
You can start from this boilerplate: |
||||
``` |
||||
#include "this/package/foo.h" |
||||
#include "gtest/gtest.h" |
||||
|
||||
namespace { |
||||
|
||||
// The fixture for testing class Foo. |
||||
class FooTest : public ::testing::Test { |
||||
protected: |
||||
// You can remove any or all of the following functions if its body |
||||
// is empty. |
||||
|
||||
FooTest() { |
||||
// You can do set-up work for each test here. |
||||
} |
||||
|
||||
virtual ~FooTest() { |
||||
// You can do clean-up work that doesn't throw exceptions here. |
||||
} |
||||
|
||||
// If the constructor and destructor are not enough for setting up |
||||
// and cleaning up each test, you can define the following methods: |
||||
|
||||
virtual void SetUp() { |
||||
// Code here will be called immediately after the constructor (right |
||||
// before each test). |
||||
} |
||||
|
||||
virtual void TearDown() { |
||||
// Code here will be called immediately after each test (right |
||||
// before the destructor). |
||||
} |
||||
|
||||
// Objects declared here can be used by all tests in the test case for Foo. |
||||
}; |
||||
|
||||
// Tests that the Foo::Bar() method does Abc. |
||||
TEST_F(FooTest, MethodBarDoesAbc) { |
||||
const string input_filepath = "this/package/testdata/myinputfile.dat"; |
||||
const string output_filepath = "this/package/testdata/myoutputfile.dat"; |
||||
Foo f; |
||||
EXPECT_EQ(0, f.Bar(input_filepath, output_filepath)); |
||||
} |
||||
|
||||
// Tests that Foo does Xyz. |
||||
TEST_F(FooTest, DoesXyz) { |
||||
// Exercises the Xyz feature of Foo. |
||||
} |
||||
|
||||
} // namespace |
||||
|
||||
int main(int argc, char **argv) { |
||||
::testing::InitGoogleTest(&argc, argv); |
||||
return RUN_ALL_TESTS(); |
||||
} |
||||
``` |
||||
|
||||
The `::testing::InitGoogleTest()` function parses the command line for Google |
||||
Test flags, and removes all recognized flags. This allows the user to control a |
||||
test program's behavior via various flags, which we'll cover in [AdvancedGuide](V1_6_AdvancedGuide.md). |
||||
You must call this function before calling `RUN_ALL_TESTS()`, or the flags |
||||
won't be properly initialized. |
||||
|
||||
On Windows, `InitGoogleTest()` also works with wide strings, so it can be used |
||||
in programs compiled in `UNICODE` mode as well. |
||||
|
||||
But maybe you think that writing all those main() functions is too much work? We agree with you completely and that's why Google Test provides a basic implementation of main(). If it fits your needs, then just link your test with gtest\_main library and you are good to go. |
||||
|
||||
## Important note for Visual C++ users ## |
||||
If you put your tests into a library and your `main()` function is in a different library or in your .exe file, those tests will not run. The reason is a [bug](https://connect.microsoft.com/feedback/viewfeedback.aspx?FeedbackID=244410&siteid=210) in Visual C++. When you define your tests, Google Test creates certain static objects to register them. These objects are not referenced from elsewhere but their constructors are still supposed to run. When Visual C++ linker sees that nothing in the library is referenced from other places it throws the library out. You have to reference your library with tests from your main program to keep the linker from discarding it. Here is how to do it. Somewhere in your library code declare a function: |
||||
``` |
||||
__declspec(dllexport) int PullInMyLibrary() { return 0; } |
||||
``` |
||||
If you put your tests in a static library (not DLL) then `__declspec(dllexport)` is not required. Now, in your main program, write a code that invokes that function: |
||||
``` |
||||
int PullInMyLibrary(); |
||||
static int dummy = PullInMyLibrary(); |
||||
``` |
||||
This will keep your tests referenced and will make them register themselves at startup. |
||||
|
||||
In addition, if you define your tests in a static library, add `/OPT:NOREF` to your main program linker options. If you use MSVC++ IDE, go to your .exe project properties/Configuration Properties/Linker/Optimization and set References setting to `Keep Unreferenced Data (/OPT:NOREF)`. This will keep Visual C++ linker from discarding individual symbols generated by your tests from the final executable. |
||||
|
||||
There is one more pitfall, though. If you use Google Test as a static library (that's how it is defined in gtest.vcproj) your tests must also reside in a static library. If you have to have them in a DLL, you _must_ change Google Test to build into a DLL as well. Otherwise your tests will not run correctly or will not run at all. The general conclusion here is: make your life easier - do not write your tests in libraries! |
||||
|
||||
# Where to Go from Here # |
||||
|
||||
Congratulations! You've learned the Google Test basics. You can start writing |
||||
and running Google Test tests, read some [samples](V1_6_Samples.md), or continue with |
||||
[AdvancedGuide](V1_6_AdvancedGuide.md), which describes many more useful Google Test features. |
||||
|
||||
# Known Limitations # |
||||
|
||||
Google Test is designed to be thread-safe. The implementation is |
||||
thread-safe on systems where the `pthreads` library is available. It |
||||
is currently _unsafe_ to use Google Test assertions from two threads |
||||
concurrently on other systems (e.g. Windows). In most tests this is |
||||
not an issue as usually the assertions are done in the main thread. If |
||||
you want to help, you can volunteer to implement the necessary |
||||
synchronization primitives in `gtest-port.h` for your platform. |
@ -0,0 +1,177 @@ |
||||
|
||||
|
||||
<b>P</b>ump is <b>U</b>seful for <b>M</b>eta <b>P</b>rogramming. |
||||
|
||||
# The Problem # |
||||
|
||||
Template and macro libraries often need to define many classes, |
||||
functions, or macros that vary only (or almost only) in the number of |
||||
arguments they take. It's a lot of repetitive, mechanical, and |
||||
error-prone work. |
||||
|
||||
Variadic templates and variadic macros can alleviate the problem. |
||||
However, while both are being considered by the C++ committee, neither |
||||
is in the standard yet or widely supported by compilers. Thus they |
||||
are often not a good choice, especially when your code needs to be |
||||
portable. And their capabilities are still limited. |
||||
|
||||
As a result, authors of such libraries often have to write scripts to |
||||
generate their implementation. However, our experience is that it's |
||||
tedious to write such scripts, which tend to reflect the structure of |
||||
the generated code poorly and are often hard to read and edit. For |
||||
example, a small change needed in the generated code may require some |
||||
non-intuitive, non-trivial changes in the script. This is especially |
||||
painful when experimenting with the code. |
||||
|
||||
# Our Solution # |
||||
|
||||
Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta |
||||
Programming, or Practical Utility for Meta Programming, whichever you |
||||
prefer) is a simple meta-programming tool for C++. The idea is that a |
||||
programmer writes a `foo.pump` file which contains C++ code plus meta |
||||
code that manipulates the C++ code. The meta code can handle |
||||
iterations over a range, nested iterations, local meta variable |
||||
definitions, simple arithmetic, and conditional expressions. You can |
||||
view it as a small Domain-Specific Language. The meta language is |
||||
designed to be non-intrusive (s.t. it won't confuse Emacs' C++ mode, |
||||
for example) and concise, making Pump code intuitive and easy to |
||||
maintain. |
||||
|
||||
## Highlights ## |
||||
|
||||
* The implementation is in a single Python script and thus ultra portable: no build or installation is needed and it works cross platforms. |
||||
* Pump tries to be smart with respect to [Google's style guide](http://code.google.com/p/google-styleguide/): it breaks long lines (easy to have when they are generated) at acceptable places to fit within 80 columns and indent the continuation lines correctly. |
||||
* The format is human-readable and more concise than XML. |
||||
* The format works relatively well with Emacs' C++ mode. |
||||
|
||||
## Examples ## |
||||
|
||||
The following Pump code (where meta keywords start with `$`, `[[` and `]]` are meta brackets, and `$$` starts a meta comment that ends with the line): |
||||
|
||||
``` |
||||
$var n = 3 $$ Defines a meta variable n. |
||||
$range i 0..n $$ Declares the range of meta iterator i (inclusive). |
||||
$for i [[ |
||||
$$ Meta loop. |
||||
// Foo$i does blah for $i-ary predicates. |
||||
$range j 1..i |
||||
template <size_t N $for j [[, typename A$j]]> |
||||
class Foo$i { |
||||
$if i == 0 [[ |
||||
blah a; |
||||
]] $elif i <= 2 [[ |
||||
blah b; |
||||
]] $else [[ |
||||
blah c; |
||||
]] |
||||
}; |
||||
|
||||
]] |
||||
``` |
||||
|
||||
will be translated by the Pump compiler to: |
||||
|
||||
``` |
||||
// Foo0 does blah for 0-ary predicates. |
||||
template <size_t N> |
||||
class Foo0 { |
||||
blah a; |
||||
}; |
||||
|
||||
// Foo1 does blah for 1-ary predicates. |
||||
template <size_t N, typename A1> |
||||
class Foo1 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo2 does blah for 2-ary predicates. |
||||
template <size_t N, typename A1, typename A2> |
||||
class Foo2 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo3 does blah for 3-ary predicates. |
||||
template <size_t N, typename A1, typename A2, typename A3> |
||||
class Foo3 { |
||||
blah c; |
||||
}; |
||||
``` |
||||
|
||||
In another example, |
||||
|
||||
``` |
||||
$range i 1..n |
||||
Func($for i + [[a$i]]); |
||||
$$ The text between i and [[ is the separator between iterations. |
||||
``` |
||||
|
||||
will generate one of the following lines (without the comments), depending on the value of `n`: |
||||
|
||||
``` |
||||
Func(); // If n is 0. |
||||
Func(a1); // If n is 1. |
||||
Func(a1 + a2); // If n is 2. |
||||
Func(a1 + a2 + a3); // If n is 3. |
||||
// And so on... |
||||
``` |
||||
|
||||
## Constructs ## |
||||
|
||||
We support the following meta programming constructs: |
||||
|
||||
| `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. | |
||||
|:----------------|:-----------------------------------------------------------------------------------------------| |
||||
| `$range id exp..exp` | Sets the range of an iteration variable, which can be reused in multiple loops later. | |
||||
| `$for id sep [[ code ]]` | Iteration. The range of `id` must have been defined earlier. `$id` is valid in `code`. | |
||||
| `$($)` | Generates a single `$` character. | |
||||
| `$id` | Value of the named constant or iteration variable. | |
||||
| `$(exp)` | Value of the expression. | |
||||
| `$if exp [[ code ]] else_branch` | Conditional. | |
||||
| `[[ code ]]` | Meta lexical block. | |
||||
| `cpp_code` | Raw C++ code. | |
||||
| `$$ comment` | Meta comment. | |
||||
|
||||
**Note:** To give the user some freedom in formatting the Pump source |
||||
code, Pump ignores a new-line character if it's right after `$for foo` |
||||
or next to `[[` or `]]`. Without this rule you'll often be forced to write |
||||
very long lines to get the desired output. Therefore sometimes you may |
||||
need to insert an extra new-line in such places for a new-line to show |
||||
up in your output. |
||||
|
||||
## Grammar ## |
||||
|
||||
``` |
||||
code ::= atomic_code* |
||||
atomic_code ::= $var id = exp |
||||
| $var id = [[ code ]] |
||||
| $range id exp..exp |
||||
| $for id sep [[ code ]] |
||||
| $($) |
||||
| $id |
||||
| $(exp) |
||||
| $if exp [[ code ]] else_branch |
||||
| [[ code ]] |
||||
| cpp_code |
||||
sep ::= cpp_code | empty_string |
||||
else_branch ::= $else [[ code ]] |
||||
| $elif exp [[ code ]] else_branch |
||||
| empty_string |
||||
exp ::= simple_expression_in_Python_syntax |
||||
``` |
||||
|
||||
## Code ## |
||||
|
||||
You can find the source code of Pump in [scripts/pump.py](http://code.google.com/p/googletest/source/browse/trunk/scripts/pump.py). It is still |
||||
very unpolished and lacks automated tests, although it has been |
||||
successfully used many times. If you find a chance to use it in your |
||||
project, please let us know what you think! We also welcome help on |
||||
improving Pump. |
||||
|
||||
## Real Examples ## |
||||
|
||||
You can find real-world applications of Pump in [Google Test](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgoogletest\.googlecode\.com) and [Google Mock](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgooglemock\.googlecode\.com). The source file `foo.h.pump` generates `foo.h`. |
||||
|
||||
## Tips ## |
||||
|
||||
* If a meta variable is followed by a letter or digit, you can separate them using `[[]]`, which inserts an empty string. For example `Foo$j[[]]Helper` generate `Foo1Helper` when `j` is 1. |
||||
* To avoid extra-long Pump source lines, you can break a line anywhere you want by inserting `[[]]` followed by a new line. Since any new-line character next to `[[` or `]]` is ignored, the generated code won't contain this new line. |
@ -0,0 +1,14 @@ |
||||
If you're like us, you'd like to look at some Google Test sample code. The |
||||
[samples folder](http://code.google.com/p/googletest/source/browse/#svn/trunk/samples) has a number of well-commented samples showing how to use a |
||||
variety of Google Test features. |
||||
|
||||
* [Sample #1](http://code.google.com/p/googletest/source/browse/trunk/samples/sample1_unittest.cc) shows the basic steps of using Google Test to test C++ functions. |
||||
* [Sample #2](http://code.google.com/p/googletest/source/browse/trunk/samples/sample2_unittest.cc) shows a more complex unit test for a class with multiple member functions. |
||||
* [Sample #3](http://code.google.com/p/googletest/source/browse/trunk/samples/sample3_unittest.cc) uses a test fixture. |
||||
* [Sample #4](http://code.google.com/p/googletest/source/browse/trunk/samples/sample4_unittest.cc) is another basic example of using Google Test. |
||||
* [Sample #5](http://code.google.com/p/googletest/source/browse/trunk/samples/sample5_unittest.cc) teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it. |
||||
* [Sample #6](http://code.google.com/p/googletest/source/browse/trunk/samples/sample6_unittest.cc) demonstrates type-parameterized tests. |
||||
* [Sample #7](http://code.google.com/p/googletest/source/browse/trunk/samples/sample7_unittest.cc) teaches the basics of value-parameterized tests. |
||||
* [Sample #8](http://code.google.com/p/googletest/source/browse/trunk/samples/sample8_unittest.cc) shows using `Combine()` in value-parameterized tests. |
||||
* [Sample #9](http://code.google.com/p/googletest/source/browse/trunk/samples/sample9_unittest.cc) shows use of the listener API to modify Google Test's console output and the use of its reflection API to inspect test results. |
||||
* [Sample #10](http://code.google.com/p/googletest/source/browse/trunk/samples/sample10_unittest.cc) shows use of the listener API to implement a primitive memory leak checker. |
@ -0,0 +1,93 @@ |
||||
|
||||
|
||||
This guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X. This tutorial begins by quickly explaining what to do for experienced users. After the quick start, the guide goes provides additional explanation about each step. |
||||
|
||||
# Quick Start # |
||||
|
||||
Here is the quick guide for using Google Test in your Xcode project. |
||||
|
||||
1. Download the source from the [website](http://code.google.com/p/googletest) using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only` |
||||
1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtest.framework. |
||||
1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests" |
||||
1. Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build phase of "UnitTests" |
||||
1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests" |
||||
1. Edit the "UnitTests" executable and add an environment variable named "DYLD\_FRAMEWORK\_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. |
||||
1. Build and Go |
||||
|
||||
The following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations. |
||||
|
||||
# Get the Source # |
||||
|
||||
Currently, the gtest.framework discussed here isn't available in a tagged release of Google Test, it is only available in the trunk. As explained at the Google Test [site](http://code.google.com/p/googletest/source/checkout">svn), you can get the code from anonymous SVN with this command: |
||||
|
||||
``` |
||||
svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only |
||||
``` |
||||
|
||||
Alternatively, if you are working with Subversion in your own code base, you can add Google Test as an external dependency to your own Subversion repository. By following this approach, everyone that checks out your svn repository will also receive a copy of Google Test (a specific version, if you wish) without having to check it out explicitly. This makes the set up of your project simpler and reduces the copied code in the repository. |
||||
|
||||
To use `svn:externals`, decide where you would like to have the external source reside. You might choose to put the external source inside the trunk, because you want it to be part of the branch when you make a release. However, keeping it outside the trunk in a version-tagged directory called something like `third-party/googletest/1.0.1`, is another option. Once the location is established, use `svn propedit svn:externals _directory_` to set the svn:externals property on a directory in your repository. This directory won't contain the code, but be its versioned parent directory. |
||||
|
||||
The command `svn propedit` will bring up your Subversion editor, making editing the long, (potentially multi-line) property simpler. This same method can be used to check out a tagged branch, by using the appropriate URL (e.g. `http://googletest.googlecode.com/svn/tags/release-1.0.1`). Additionally, the svn:externals property allows the specification of a particular revision of the trunk with the `-r_##_` option (e.g. `externals/src/googletest -r60 http://googletest.googlecode.com/svn/trunk`). |
||||
|
||||
Here is an example of using the svn:externals properties on a trunk (read via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/externals/src/googletest/` directory. |
||||
|
||||
``` |
||||
[Computer:svn] user$ svn propget svn:externals trunk |
||||
externals/src/googletest http://googletest.googlecode.com/svn/trunk |
||||
``` |
||||
|
||||
# Add the Framework to Your Project # |
||||
|
||||
The next step is to build and add the gtest.framework to your own project. This guide describes two common ways below. |
||||
|
||||
* **Option 1** --- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test trunk) and build the framework manually. Then, add the built framework into your project using the "Add->Existing Framework..." from the context menu or "Project->Add..." from the main menu. The gtest.framework is relocatable and contains the headers and object code that you'll need to make tests. This method requires rebuilding every time you upgrade Google Test in your project. |
||||
* **Option 2** --- If you are going to be living off the trunk of Google Test, incorporating its latest features into your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework every time the source updates. to do this, you'll need to add the gtest.xcodeproj file, not the framework itself, to your own Xcode project. Then, from the build products that are revealed by the project's disclosure triangle, you can find the gtest.framework, which can be added to your targets (discussed below). |
||||
|
||||
# Make a Test Target # |
||||
|
||||
To start writing tests, make a new "Shell Tool" target. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" build phase of the target. |
||||
|
||||
Next, you'll want to add gtest.framework in two different ways, depending upon which option you chose above. |
||||
|
||||
* **Option 1** --- During compilation, Xcode will need to know that you are linking against the gtest.framework. Add the gtest.framework to the "Link Binary with Libraries" build phase of your test target. This will include the Google Test headers in your header search path, and will tell the linker where to find the library. |
||||
* **Option 2** --- If your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary with Libraries" build phase of your test target. In addition, you'll want to add the gtest.framework as a dependency to your unit test target. This way, Xcode will make sure that gtest.framework is up to date, every time your build your target. Finally, if you don't share build directories with Google Test, you'll have to copy the gtest.framework into your own build products directory using a "Run Script" build phase. |
||||
|
||||
# Set Up the Executable Run Environment # |
||||
|
||||
Since the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Frameworks` directory, in which to place gtest.framework. Instead, the dynamic linker must be told at runtime to search for the framework in another location. This can be accomplished by setting the "DYLD\_FRAMEWORK\_PATH" environment variable in the "Edit Active Executable ..." Arguments tab, under "Variables to be set in the environment:". The path for this value is the path (relative or absolute) of the directory containing the gtest.framework. |
||||
|
||||
If you haven't set up the DYLD\_FRAMEWORK\_PATH, correctly, you might get a message like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-15 06:23:57 -0600.] |
||||
dyld: Library not loaded: @loader_path/../Frameworks/gtest.framework/Versions/A/gtest |
||||
Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest |
||||
Reason: image not found |
||||
``` |
||||
|
||||
To correct this problem, got to the directory containing the executable named in "Referenced from:" value in the error message above. Then, with the terminal in this location, find the relative path to the directory containing the gtest.framework. That is the value you'll need to set as the DYLD\_FRAMEWORK\_PATH. |
||||
|
||||
# Build and Go # |
||||
|
||||
Now, when you click "Build and Go", the test will be executed. Dumping out something like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-06 06:36:13 -0600.] |
||||
[==========] Running 2 tests from 1 test case. |
||||
[----------] Global test environment set-up. |
||||
[----------] 2 tests from WidgetInitializerTest |
||||
[ RUN ] WidgetInitializerTest.TestConstructor |
||||
[ OK ] WidgetInitializerTest.TestConstructor |
||||
[ RUN ] WidgetInitializerTest.TestConversion |
||||
[ OK ] WidgetInitializerTest.TestConversion |
||||
[----------] Global test environment tear-down |
||||
[==========] 2 tests from 1 test case ran. |
||||
[ PASSED ] 2 tests. |
||||
|
||||
The Debugger has exited with status 0. |
||||
``` |
||||
|
||||
# Summary # |
||||
|
||||
Unit testing is a valuable way to ensure your data model stays valid even during rapid development or refactoring. The Google Testing Framework is a great unit testing framework for C and C++ which integrates well with an Xcode development environment. |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,14 @@ |
||||
This page lists all documentation wiki pages for Google Test **(the SVN trunk version)** |
||||
-- **if you use a released version of Google Test, please read the |
||||
documentation for that specific version instead.** |
||||
|
||||
* [Primer](V1_7_Primer.md) -- start here if you are new to Google Test. |
||||
* [Samples](V1_7_Samples.md) -- learn from examples. |
||||
* [AdvancedGuide](V1_7_AdvancedGuide.md) -- learn more about Google Test. |
||||
* [XcodeGuide](V1_7_XcodeGuide.md) -- how to use Google Test in Xcode on Mac. |
||||
* [Frequently-Asked Questions](V1_7_FAQ.md) -- check here before asking a question on the mailing list. |
||||
|
||||
To contribute code to Google Test, read: |
||||
|
||||
* [DevGuide](DevGuide.md) -- read this _before_ writing your first patch. |
||||
* [PumpManual](V1_7_PumpManual.md) -- how we generate some of Google Test's source files. |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,501 @@ |
||||
|
||||
|
||||
# Introduction: Why Google C++ Testing Framework? # |
||||
|
||||
_Google C++ Testing Framework_ helps you write better C++ tests. |
||||
|
||||
No matter whether you work on Linux, Windows, or a Mac, if you write C++ code, |
||||
Google Test can help you. |
||||
|
||||
So what makes a good test, and how does Google C++ Testing Framework fit in? We believe: |
||||
1. Tests should be _independent_ and _repeatable_. It's a pain to debug a test that succeeds or fails as a result of other tests. Google C++ Testing Framework isolates the tests by running each of them on a different object. When a test fails, Google C++ Testing Framework allows you to run it in isolation for quick debugging. |
||||
1. Tests should be well _organized_ and reflect the structure of the tested code. Google C++ Testing Framework groups related tests into test cases that can share data and subroutines. This common pattern is easy to recognize and makes tests easy to maintain. Such consistency is especially helpful when people switch projects and start to work on a new code base. |
||||
1. Tests should be _portable_ and _reusable_. The open-source community has a lot of code that is platform-neutral, its tests should also be platform-neutral. Google C++ Testing Framework works on different OSes, with different compilers (gcc, MSVC, and others), with or without exceptions, so Google C++ Testing Framework tests can easily work with a variety of configurations. (Note that the current release only contains build scripts for Linux - we are actively working on scripts for other platforms.) |
||||
1. When tests fail, they should provide as much _information_ about the problem as possible. Google C++ Testing Framework doesn't stop at the first test failure. Instead, it only stops the current test and continues with the next. You can also set up tests that report non-fatal failures after which the current test continues. Thus, you can detect and fix multiple bugs in a single run-edit-compile cycle. |
||||
1. The testing framework should liberate test writers from housekeeping chores and let them focus on the test _content_. Google C++ Testing Framework automatically keeps track of all tests defined, and doesn't require the user to enumerate them in order to run them. |
||||
1. Tests should be _fast_. With Google C++ Testing Framework, you can reuse shared resources across tests and pay for the set-up/tear-down only once, without making tests depend on each other. |
||||
|
||||
Since Google C++ Testing Framework is based on the popular xUnit |
||||
architecture, you'll feel right at home if you've used JUnit or PyUnit before. |
||||
If not, it will take you about 10 minutes to learn the basics and get started. |
||||
So let's go! |
||||
|
||||
_Note:_ We sometimes refer to Google C++ Testing Framework informally |
||||
as _Google Test_. |
||||
|
||||
# Setting up a New Test Project # |
||||
|
||||
To write a test program using Google Test, you need to compile Google |
||||
Test into a library and link your test with it. We provide build |
||||
files for some popular build systems: `msvc/` for Visual Studio, |
||||
`xcode/` for Mac Xcode, `make/` for GNU make, `codegear/` for Borland |
||||
C++ Builder, and the autotools script (deprecated) and |
||||
`CMakeLists.txt` for CMake (recommended) in the Google Test root |
||||
directory. If your build system is not on this list, you can take a |
||||
look at `make/Makefile` to learn how Google Test should be compiled |
||||
(basically you want to compile `src/gtest-all.cc` with `GTEST_ROOT` |
||||
and `GTEST_ROOT/include` in the header search path, where `GTEST_ROOT` |
||||
is the Google Test root directory). |
||||
|
||||
Once you are able to compile the Google Test library, you should |
||||
create a project or build target for your test program. Make sure you |
||||
have `GTEST_ROOT/include` in the header search path so that the |
||||
compiler can find `"gtest/gtest.h"` when compiling your test. Set up |
||||
your test project to link with the Google Test library (for example, |
||||
in Visual Studio, this is done by adding a dependency on |
||||
`gtest.vcproj`). |
||||
|
||||
If you still have questions, take a look at how Google Test's own |
||||
tests are built and use them as examples. |
||||
|
||||
# Basic Concepts # |
||||
|
||||
When using Google Test, you start by writing _assertions_, which are statements |
||||
that check whether a condition is true. An assertion's result can be _success_, |
||||
_nonfatal failure_, or _fatal failure_. If a fatal failure occurs, it aborts |
||||
the current function; otherwise the program continues normally. |
||||
|
||||
_Tests_ use assertions to verify the tested code's behavior. If a test crashes |
||||
or has a failed assertion, then it _fails_; otherwise it _succeeds_. |
||||
|
||||
A _test case_ contains one or many tests. You should group your tests into test |
||||
cases that reflect the structure of the tested code. When multiple tests in a |
||||
test case need to share common objects and subroutines, you can put them into a |
||||
_test fixture_ class. |
||||
|
||||
A _test program_ can contain multiple test cases. |
||||
|
||||
We'll now explain how to write a test program, starting at the individual |
||||
assertion level and building up to tests and test cases. |
||||
|
||||
# Assertions # |
||||
|
||||
Google Test assertions are macros that resemble function calls. You test a |
||||
class or function by making assertions about its behavior. When an assertion |
||||
fails, Google Test prints the assertion's source file and line number location, |
||||
along with a failure message. You may also supply a custom failure message |
||||
which will be appended to Google Test's message. |
||||
|
||||
The assertions come in pairs that test the same thing but have different |
||||
effects on the current function. `ASSERT_*` versions generate fatal failures |
||||
when they fail, and **abort the current function**. `EXPECT_*` versions generate |
||||
nonfatal failures, which don't abort the current function. Usually `EXPECT_*` |
||||
are preferred, as they allow more than one failures to be reported in a test. |
||||
However, you should use `ASSERT_*` if it doesn't make sense to continue when |
||||
the assertion in question fails. |
||||
|
||||
Since a failed `ASSERT_*` returns from the current function immediately, |
||||
possibly skipping clean-up code that comes after it, it may cause a space leak. |
||||
Depending on the nature of the leak, it may or may not be worth fixing - so |
||||
keep this in mind if you get a heap checker error in addition to assertion |
||||
errors. |
||||
|
||||
To provide a custom failure message, simply stream it into the macro using the |
||||
`<<` operator, or a sequence of such operators. An example: |
||||
``` |
||||
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length"; |
||||
|
||||
for (int i = 0; i < x.size(); ++i) { |
||||
EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i; |
||||
} |
||||
``` |
||||
|
||||
Anything that can be streamed to an `ostream` can be streamed to an assertion |
||||
macro--in particular, C strings and `string` objects. If a wide string |
||||
(`wchar_t*`, `TCHAR*` in `UNICODE` mode on Windows, or `std::wstring`) is |
||||
streamed to an assertion, it will be translated to UTF-8 when printed. |
||||
|
||||
## Basic Assertions ## |
||||
|
||||
These assertions do basic true/false condition testing. |
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_TRUE(`_condition_`)`; | `EXPECT_TRUE(`_condition_`)`; | _condition_ is true | |
||||
| `ASSERT_FALSE(`_condition_`)`; | `EXPECT_FALSE(`_condition_`)`; | _condition_ is false | |
||||
|
||||
Remember, when they fail, `ASSERT_*` yields a fatal failure and |
||||
returns from the current function, while `EXPECT_*` yields a nonfatal |
||||
failure, allowing the function to continue running. In either case, an |
||||
assertion failure means its containing test fails. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## Binary Comparison ## |
||||
|
||||
This section describes assertions that compare two values. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
|`ASSERT_EQ(`_expected_`, `_actual_`);`|`EXPECT_EQ(`_expected_`, `_actual_`);`| _expected_ `==` _actual_ | |
||||
|`ASSERT_NE(`_val1_`, `_val2_`);` |`EXPECT_NE(`_val1_`, `_val2_`);` | _val1_ `!=` _val2_ | |
||||
|`ASSERT_LT(`_val1_`, `_val2_`);` |`EXPECT_LT(`_val1_`, `_val2_`);` | _val1_ `<` _val2_ | |
||||
|`ASSERT_LE(`_val1_`, `_val2_`);` |`EXPECT_LE(`_val1_`, `_val2_`);` | _val1_ `<=` _val2_ | |
||||
|`ASSERT_GT(`_val1_`, `_val2_`);` |`EXPECT_GT(`_val1_`, `_val2_`);` | _val1_ `>` _val2_ | |
||||
|`ASSERT_GE(`_val1_`, `_val2_`);` |`EXPECT_GE(`_val1_`, `_val2_`);` | _val1_ `>=` _val2_ | |
||||
|
||||
In the event of a failure, Google Test prints both _val1_ and _val2_ |
||||
. In `ASSERT_EQ*` and `EXPECT_EQ*` (and all other equality assertions |
||||
we'll introduce later), you should put the expression you want to test |
||||
in the position of _actual_, and put its expected value in _expected_, |
||||
as Google Test's failure messages are optimized for this convention. |
||||
|
||||
Value arguments must be comparable by the assertion's comparison |
||||
operator or you'll get a compiler error. We used to require the |
||||
arguments to support the `<<` operator for streaming to an `ostream`, |
||||
but it's no longer necessary since v1.6.0 (if `<<` is supported, it |
||||
will be called to print the arguments when the assertion fails; |
||||
otherwise Google Test will attempt to print them in the best way it |
||||
can. For more details and how to customize the printing of the |
||||
arguments, see this Google Mock [recipe](http://code.google.com/p/googlemock/wiki/CookBook#Teaching_Google_Mock_How_to_Print_Your_Values).). |
||||
|
||||
These assertions can work with a user-defined type, but only if you define the |
||||
corresponding comparison operator (e.g. `==`, `<`, etc). If the corresponding |
||||
operator is defined, prefer using the `ASSERT_*()` macros because they will |
||||
print out not only the result of the comparison, but the two operands as well. |
||||
|
||||
Arguments are always evaluated exactly once. Therefore, it's OK for the |
||||
arguments to have side effects. However, as with any ordinary C/C++ function, |
||||
the arguments' evaluation order is undefined (i.e. the compiler is free to |
||||
choose any order) and your code should not depend on any particular argument |
||||
evaluation order. |
||||
|
||||
`ASSERT_EQ()` does pointer equality on pointers. If used on two C strings, it |
||||
tests if they are in the same memory location, not if they have the same value. |
||||
Therefore, if you want to compare C strings (e.g. `const char*`) by value, use |
||||
`ASSERT_STREQ()` , which will be described later on. In particular, to assert |
||||
that a C string is `NULL`, use `ASSERT_STREQ(NULL, c_string)` . However, to |
||||
compare two `string` objects, you should use `ASSERT_EQ`. |
||||
|
||||
Macros in this section work with both narrow and wide string objects (`string` |
||||
and `wstring`). |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
## String Comparison ## |
||||
|
||||
The assertions in this group compare two **C strings**. If you want to compare |
||||
two `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead. |
||||
|
||||
| **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |
||||
|:--------------------|:-----------------------|:-------------| |
||||
| `ASSERT_STREQ(`_expected\_str_`, `_actual\_str_`);` | `EXPECT_STREQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content | |
||||
| `ASSERT_STRNE(`_str1_`, `_str2_`);` | `EXPECT_STRNE(`_str1_`, `_str2_`);` | the two C strings have different content | |
||||
| `ASSERT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);`| `EXPECT_STRCASEEQ(`_expected\_str_`, `_actual\_str_`);` | the two C strings have the same content, ignoring case | |
||||
| `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case | |
||||
|
||||
Note that "CASE" in an assertion name means that case is ignored. |
||||
|
||||
`*STREQ*` and `*STRNE*` also accept wide C strings (`wchar_t*`). If a |
||||
comparison of two wide strings fails, their values will be printed as UTF-8 |
||||
narrow strings. |
||||
|
||||
A `NULL` pointer and an empty string are considered _different_. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
See also: For more string comparison tricks (substring, prefix, suffix, and |
||||
regular expression matching, for example), see the [Advanced Google Test Guide](V1_7_AdvancedGuide.md). |
||||
|
||||
# Simple Tests # |
||||
|
||||
To create a test: |
||||
1. Use the `TEST()` macro to define and name a test function, These are ordinary C++ functions that don't return a value. |
||||
1. In this function, along with any valid C++ statements you want to include, use the various Google Test assertions to check values. |
||||
1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds. |
||||
|
||||
``` |
||||
TEST(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
|
||||
`TEST()` arguments go from general to specific. The _first_ argument is the |
||||
name of the test case, and the _second_ argument is the test's name within the |
||||
test case. Both names must be valid C++ identifiers, and they should not contain underscore (`_`). A test's _full name_ consists of its containing test case and its |
||||
individual name. Tests from different test cases can have the same individual |
||||
name. |
||||
|
||||
For example, let's take a simple integer function: |
||||
``` |
||||
int Factorial(int n); // Returns the factorial of n |
||||
``` |
||||
|
||||
A test case for this function might look like: |
||||
``` |
||||
// Tests factorial of 0. |
||||
TEST(FactorialTest, HandlesZeroInput) { |
||||
EXPECT_EQ(1, Factorial(0)); |
||||
} |
||||
|
||||
// Tests factorial of positive numbers. |
||||
TEST(FactorialTest, HandlesPositiveInput) { |
||||
EXPECT_EQ(1, Factorial(1)); |
||||
EXPECT_EQ(2, Factorial(2)); |
||||
EXPECT_EQ(6, Factorial(3)); |
||||
EXPECT_EQ(40320, Factorial(8)); |
||||
} |
||||
``` |
||||
|
||||
Google Test groups the test results by test cases, so logically-related tests |
||||
should be in the same test case; in other words, the first argument to their |
||||
`TEST()` should be the same. In the above example, we have two tests, |
||||
`HandlesZeroInput` and `HandlesPositiveInput`, that belong to the same test |
||||
case `FactorialTest`. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Test Fixtures: Using the Same Data Configuration for Multiple Tests # |
||||
|
||||
If you find yourself writing two or more tests that operate on similar data, |
||||
you can use a _test fixture_. It allows you to reuse the same configuration of |
||||
objects for several different tests. |
||||
|
||||
To create a fixture, just: |
||||
1. Derive a class from `::testing::Test` . Start its body with `protected:` or `public:` as we'll want to access fixture members from sub-classes. |
||||
1. Inside the class, declare any objects you plan to use. |
||||
1. If necessary, write a default constructor or `SetUp()` function to prepare the objects for each test. A common mistake is to spell `SetUp()` as `Setup()` with a small `u` - don't let that happen to you. |
||||
1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read this [FAQ entry](http://code.google.com/p/googletest/wiki/V1_7_FAQ#Should_I_use_the_constructor/destructor_of_the_test_fixture_or_t). |
||||
1. If needed, define subroutines for your tests to share. |
||||
|
||||
When using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to |
||||
access objects and subroutines in the test fixture: |
||||
``` |
||||
TEST_F(test_case_name, test_name) { |
||||
... test body ... |
||||
} |
||||
``` |
||||
|
||||
Like `TEST()`, the first argument is the test case name, but for `TEST_F()` |
||||
this must be the name of the test fixture class. You've probably guessed: `_F` |
||||
is for fixture. |
||||
|
||||
Unfortunately, the C++ macro system does not allow us to create a single macro |
||||
that can handle both types of tests. Using the wrong macro causes a compiler |
||||
error. |
||||
|
||||
Also, you must first define a test fixture class before using it in a |
||||
`TEST_F()`, or you'll get the compiler error "`virtual outside class |
||||
declaration`". |
||||
|
||||
For each test defined with `TEST_F()`, Google Test will: |
||||
1. Create a _fresh_ test fixture at runtime |
||||
1. Immediately initialize it via `SetUp()` , |
||||
1. Run the test |
||||
1. Clean up by calling `TearDown()` |
||||
1. Delete the test fixture. Note that different tests in the same test case have different test fixture objects, and Google Test always deletes a test fixture before it creates the next one. Google Test does not reuse the same test fixture for multiple tests. Any changes one test makes to the fixture do not affect other tests. |
||||
|
||||
As an example, let's write tests for a FIFO queue class named `Queue`, which |
||||
has the following interface: |
||||
``` |
||||
template <typename E> // E is the element type. |
||||
class Queue { |
||||
public: |
||||
Queue(); |
||||
void Enqueue(const E& element); |
||||
E* Dequeue(); // Returns NULL if the queue is empty. |
||||
size_t size() const; |
||||
... |
||||
}; |
||||
``` |
||||
|
||||
First, define a fixture class. By convention, you should give it the name |
||||
`FooTest` where `Foo` is the class being tested. |
||||
``` |
||||
class QueueTest : public ::testing::Test { |
||||
protected: |
||||
virtual void SetUp() { |
||||
q1_.Enqueue(1); |
||||
q2_.Enqueue(2); |
||||
q2_.Enqueue(3); |
||||
} |
||||
|
||||
// virtual void TearDown() {} |
||||
|
||||
Queue<int> q0_; |
||||
Queue<int> q1_; |
||||
Queue<int> q2_; |
||||
}; |
||||
``` |
||||
|
||||
In this case, `TearDown()` is not needed since we don't have to clean up after |
||||
each test, other than what's already done by the destructor. |
||||
|
||||
Now we'll write tests using `TEST_F()` and this fixture. |
||||
``` |
||||
TEST_F(QueueTest, IsEmptyInitially) { |
||||
EXPECT_EQ(0, q0_.size()); |
||||
} |
||||
|
||||
TEST_F(QueueTest, DequeueWorks) { |
||||
int* n = q0_.Dequeue(); |
||||
EXPECT_EQ(NULL, n); |
||||
|
||||
n = q1_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(1, *n); |
||||
EXPECT_EQ(0, q1_.size()); |
||||
delete n; |
||||
|
||||
n = q2_.Dequeue(); |
||||
ASSERT_TRUE(n != NULL); |
||||
EXPECT_EQ(2, *n); |
||||
EXPECT_EQ(1, q2_.size()); |
||||
delete n; |
||||
} |
||||
``` |
||||
|
||||
The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is |
||||
to use `EXPECT_*` when you want the test to continue to reveal more errors |
||||
after the assertion failure, and use `ASSERT_*` when continuing after failure |
||||
doesn't make sense. For example, the second assertion in the `Dequeue` test is |
||||
`ASSERT_TRUE(n != NULL)`, as we need to dereference the pointer `n` later, |
||||
which would lead to a segfault when `n` is `NULL`. |
||||
|
||||
When these tests run, the following happens: |
||||
1. Google Test constructs a `QueueTest` object (let's call it `t1` ). |
||||
1. `t1.SetUp()` initializes `t1` . |
||||
1. The first test ( `IsEmptyInitially` ) runs on `t1` . |
||||
1. `t1.TearDown()` cleans up after the test finishes. |
||||
1. `t1` is destructed. |
||||
1. The above steps are repeated on another `QueueTest` object, this time running the `DequeueWorks` test. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
_Note_: Google Test automatically saves all _Google Test_ flags when a test |
||||
object is constructed, and restores them when it is destructed. |
||||
|
||||
# Invoking the Tests # |
||||
|
||||
`TEST()` and `TEST_F()` implicitly register their tests with Google Test. So, unlike with many other C++ testing frameworks, you don't have to re-list all your defined tests in order to run them. |
||||
|
||||
After defining your tests, you can run them with `RUN_ALL_TESTS()` , which returns `0` if all the tests are successful, or `1` otherwise. Note that `RUN_ALL_TESTS()` runs _all tests_ in your link unit -- they can be from different test cases, or even different source files. |
||||
|
||||
When invoked, the `RUN_ALL_TESTS()` macro: |
||||
1. Saves the state of all Google Test flags. |
||||
1. Creates a test fixture object for the first test. |
||||
1. Initializes it via `SetUp()`. |
||||
1. Runs the test on the fixture object. |
||||
1. Cleans up the fixture via `TearDown()`. |
||||
1. Deletes the fixture. |
||||
1. Restores the state of all Google Test flags. |
||||
1. Repeats the above steps for the next test, until all tests have run. |
||||
|
||||
In addition, if the text fixture's constructor generates a fatal failure in |
||||
step 2, there is no point for step 3 - 5 and they are thus skipped. Similarly, |
||||
if step 3 generates a fatal failure, step 4 will be skipped. |
||||
|
||||
_Important_: You must not ignore the return value of `RUN_ALL_TESTS()`, or `gcc` |
||||
will give you a compiler error. The rationale for this design is that the |
||||
automated testing service determines whether a test has passed based on its |
||||
exit code, not on its stdout/stderr output; thus your `main()` function must |
||||
return the value of `RUN_ALL_TESTS()`. |
||||
|
||||
Also, you should call `RUN_ALL_TESTS()` only **once**. Calling it more than once |
||||
conflicts with some advanced Google Test features (e.g. thread-safe death |
||||
tests) and thus is not supported. |
||||
|
||||
_Availability_: Linux, Windows, Mac. |
||||
|
||||
# Writing the main() Function # |
||||
|
||||
You can start from this boilerplate: |
||||
``` |
||||
#include "this/package/foo.h" |
||||
#include "gtest/gtest.h" |
||||
|
||||
namespace { |
||||
|
||||
// The fixture for testing class Foo. |
||||
class FooTest : public ::testing::Test { |
||||
protected: |
||||
// You can remove any or all of the following functions if its body |
||||
// is empty. |
||||
|
||||
FooTest() { |
||||
// You can do set-up work for each test here. |
||||
} |
||||
|
||||
virtual ~FooTest() { |
||||
// You can do clean-up work that doesn't throw exceptions here. |
||||
} |
||||
|
||||
// If the constructor and destructor are not enough for setting up |
||||
// and cleaning up each test, you can define the following methods: |
||||
|
||||
virtual void SetUp() { |
||||
// Code here will be called immediately after the constructor (right |
||||
// before each test). |
||||
} |
||||
|
||||
virtual void TearDown() { |
||||
// Code here will be called immediately after each test (right |
||||
// before the destructor). |
||||
} |
||||
|
||||
// Objects declared here can be used by all tests in the test case for Foo. |
||||
}; |
||||
|
||||
// Tests that the Foo::Bar() method does Abc. |
||||
TEST_F(FooTest, MethodBarDoesAbc) { |
||||
const string input_filepath = "this/package/testdata/myinputfile.dat"; |
||||
const string output_filepath = "this/package/testdata/myoutputfile.dat"; |
||||
Foo f; |
||||
EXPECT_EQ(0, f.Bar(input_filepath, output_filepath)); |
||||
} |
||||
|
||||
// Tests that Foo does Xyz. |
||||
TEST_F(FooTest, DoesXyz) { |
||||
// Exercises the Xyz feature of Foo. |
||||
} |
||||
|
||||
} // namespace |
||||
|
||||
int main(int argc, char **argv) { |
||||
::testing::InitGoogleTest(&argc, argv); |
||||
return RUN_ALL_TESTS(); |
||||
} |
||||
``` |
||||
|
||||
The `::testing::InitGoogleTest()` function parses the command line for Google |
||||
Test flags, and removes all recognized flags. This allows the user to control a |
||||
test program's behavior via various flags, which we'll cover in [AdvancedGuide](V1_7_AdvancedGuide.md). |
||||
You must call this function before calling `RUN_ALL_TESTS()`, or the flags |
||||
won't be properly initialized. |
||||
|
||||
On Windows, `InitGoogleTest()` also works with wide strings, so it can be used |
||||
in programs compiled in `UNICODE` mode as well. |
||||
|
||||
But maybe you think that writing all those main() functions is too much work? We agree with you completely and that's why Google Test provides a basic implementation of main(). If it fits your needs, then just link your test with gtest\_main library and you are good to go. |
||||
|
||||
## Important note for Visual C++ users ## |
||||
If you put your tests into a library and your `main()` function is in a different library or in your .exe file, those tests will not run. The reason is a [bug](https://connect.microsoft.com/feedback/viewfeedback.aspx?FeedbackID=244410&siteid=210) in Visual C++. When you define your tests, Google Test creates certain static objects to register them. These objects are not referenced from elsewhere but their constructors are still supposed to run. When Visual C++ linker sees that nothing in the library is referenced from other places it throws the library out. You have to reference your library with tests from your main program to keep the linker from discarding it. Here is how to do it. Somewhere in your library code declare a function: |
||||
``` |
||||
__declspec(dllexport) int PullInMyLibrary() { return 0; } |
||||
``` |
||||
If you put your tests in a static library (not DLL) then `__declspec(dllexport)` is not required. Now, in your main program, write a code that invokes that function: |
||||
``` |
||||
int PullInMyLibrary(); |
||||
static int dummy = PullInMyLibrary(); |
||||
``` |
||||
This will keep your tests referenced and will make them register themselves at startup. |
||||
|
||||
In addition, if you define your tests in a static library, add `/OPT:NOREF` to your main program linker options. If you use MSVC++ IDE, go to your .exe project properties/Configuration Properties/Linker/Optimization and set References setting to `Keep Unreferenced Data (/OPT:NOREF)`. This will keep Visual C++ linker from discarding individual symbols generated by your tests from the final executable. |
||||
|
||||
There is one more pitfall, though. If you use Google Test as a static library (that's how it is defined in gtest.vcproj) your tests must also reside in a static library. If you have to have them in a DLL, you _must_ change Google Test to build into a DLL as well. Otherwise your tests will not run correctly or will not run at all. The general conclusion here is: make your life easier - do not write your tests in libraries! |
||||
|
||||
# Where to Go from Here # |
||||
|
||||
Congratulations! You've learned the Google Test basics. You can start writing |
||||
and running Google Test tests, read some [samples](V1_7_Samples.md), or continue with |
||||
[AdvancedGuide](V1_7_AdvancedGuide.md), which describes many more useful Google Test features. |
||||
|
||||
# Known Limitations # |
||||
|
||||
Google Test is designed to be thread-safe. The implementation is |
||||
thread-safe on systems where the `pthreads` library is available. It |
||||
is currently _unsafe_ to use Google Test assertions from two threads |
||||
concurrently on other systems (e.g. Windows). In most tests this is |
||||
not an issue as usually the assertions are done in the main thread. If |
||||
you want to help, you can volunteer to implement the necessary |
||||
synchronization primitives in `gtest-port.h` for your platform. |
@ -0,0 +1,177 @@ |
||||
|
||||
|
||||
<b>P</b>ump is <b>U</b>seful for <b>M</b>eta <b>P</b>rogramming. |
||||
|
||||
# The Problem # |
||||
|
||||
Template and macro libraries often need to define many classes, |
||||
functions, or macros that vary only (or almost only) in the number of |
||||
arguments they take. It's a lot of repetitive, mechanical, and |
||||
error-prone work. |
||||
|
||||
Variadic templates and variadic macros can alleviate the problem. |
||||
However, while both are being considered by the C++ committee, neither |
||||
is in the standard yet or widely supported by compilers. Thus they |
||||
are often not a good choice, especially when your code needs to be |
||||
portable. And their capabilities are still limited. |
||||
|
||||
As a result, authors of such libraries often have to write scripts to |
||||
generate their implementation. However, our experience is that it's |
||||
tedious to write such scripts, which tend to reflect the structure of |
||||
the generated code poorly and are often hard to read and edit. For |
||||
example, a small change needed in the generated code may require some |
||||
non-intuitive, non-trivial changes in the script. This is especially |
||||
painful when experimenting with the code. |
||||
|
||||
# Our Solution # |
||||
|
||||
Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta |
||||
Programming, or Practical Utility for Meta Programming, whichever you |
||||
prefer) is a simple meta-programming tool for C++. The idea is that a |
||||
programmer writes a `foo.pump` file which contains C++ code plus meta |
||||
code that manipulates the C++ code. The meta code can handle |
||||
iterations over a range, nested iterations, local meta variable |
||||
definitions, simple arithmetic, and conditional expressions. You can |
||||
view it as a small Domain-Specific Language. The meta language is |
||||
designed to be non-intrusive (s.t. it won't confuse Emacs' C++ mode, |
||||
for example) and concise, making Pump code intuitive and easy to |
||||
maintain. |
||||
|
||||
## Highlights ## |
||||
|
||||
* The implementation is in a single Python script and thus ultra portable: no build or installation is needed and it works cross platforms. |
||||
* Pump tries to be smart with respect to [Google's style guide](http://code.google.com/p/google-styleguide/): it breaks long lines (easy to have when they are generated) at acceptable places to fit within 80 columns and indent the continuation lines correctly. |
||||
* The format is human-readable and more concise than XML. |
||||
* The format works relatively well with Emacs' C++ mode. |
||||
|
||||
## Examples ## |
||||
|
||||
The following Pump code (where meta keywords start with `$`, `[[` and `]]` are meta brackets, and `$$` starts a meta comment that ends with the line): |
||||
|
||||
``` |
||||
$var n = 3 $$ Defines a meta variable n. |
||||
$range i 0..n $$ Declares the range of meta iterator i (inclusive). |
||||
$for i [[ |
||||
$$ Meta loop. |
||||
// Foo$i does blah for $i-ary predicates. |
||||
$range j 1..i |
||||
template <size_t N $for j [[, typename A$j]]> |
||||
class Foo$i { |
||||
$if i == 0 [[ |
||||
blah a; |
||||
]] $elif i <= 2 [[ |
||||
blah b; |
||||
]] $else [[ |
||||
blah c; |
||||
]] |
||||
}; |
||||
|
||||
]] |
||||
``` |
||||
|
||||
will be translated by the Pump compiler to: |
||||
|
||||
``` |
||||
// Foo0 does blah for 0-ary predicates. |
||||
template <size_t N> |
||||
class Foo0 { |
||||
blah a; |
||||
}; |
||||
|
||||
// Foo1 does blah for 1-ary predicates. |
||||
template <size_t N, typename A1> |
||||
class Foo1 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo2 does blah for 2-ary predicates. |
||||
template <size_t N, typename A1, typename A2> |
||||
class Foo2 { |
||||
blah b; |
||||
}; |
||||
|
||||
// Foo3 does blah for 3-ary predicates. |
||||
template <size_t N, typename A1, typename A2, typename A3> |
||||
class Foo3 { |
||||
blah c; |
||||
}; |
||||
``` |
||||
|
||||
In another example, |
||||
|
||||
``` |
||||
$range i 1..n |
||||
Func($for i + [[a$i]]); |
||||
$$ The text between i and [[ is the separator between iterations. |
||||
``` |
||||
|
||||
will generate one of the following lines (without the comments), depending on the value of `n`: |
||||
|
||||
``` |
||||
Func(); // If n is 0. |
||||
Func(a1); // If n is 1. |
||||
Func(a1 + a2); // If n is 2. |
||||
Func(a1 + a2 + a3); // If n is 3. |
||||
// And so on... |
||||
``` |
||||
|
||||
## Constructs ## |
||||
|
||||
We support the following meta programming constructs: |
||||
|
||||
| `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. | |
||||
|:----------------|:-----------------------------------------------------------------------------------------------| |
||||
| `$range id exp..exp` | Sets the range of an iteration variable, which can be reused in multiple loops later. | |
||||
| `$for id sep [[ code ]]` | Iteration. The range of `id` must have been defined earlier. `$id` is valid in `code`. | |
||||
| `$($)` | Generates a single `$` character. | |
||||
| `$id` | Value of the named constant or iteration variable. | |
||||
| `$(exp)` | Value of the expression. | |
||||
| `$if exp [[ code ]] else_branch` | Conditional. | |
||||
| `[[ code ]]` | Meta lexical block. | |
||||
| `cpp_code` | Raw C++ code. | |
||||
| `$$ comment` | Meta comment. | |
||||
|
||||
**Note:** To give the user some freedom in formatting the Pump source |
||||
code, Pump ignores a new-line character if it's right after `$for foo` |
||||
or next to `[[` or `]]`. Without this rule you'll often be forced to write |
||||
very long lines to get the desired output. Therefore sometimes you may |
||||
need to insert an extra new-line in such places for a new-line to show |
||||
up in your output. |
||||
|
||||
## Grammar ## |
||||
|
||||
``` |
||||
code ::= atomic_code* |
||||
atomic_code ::= $var id = exp |
||||
| $var id = [[ code ]] |
||||
| $range id exp..exp |
||||
| $for id sep [[ code ]] |
||||
| $($) |
||||
| $id |
||||
| $(exp) |
||||
| $if exp [[ code ]] else_branch |
||||
| [[ code ]] |
||||
| cpp_code |
||||
sep ::= cpp_code | empty_string |
||||
else_branch ::= $else [[ code ]] |
||||
| $elif exp [[ code ]] else_branch |
||||
| empty_string |
||||
exp ::= simple_expression_in_Python_syntax |
||||
``` |
||||
|
||||
## Code ## |
||||
|
||||
You can find the source code of Pump in [scripts/pump.py](http://code.google.com/p/googletest/source/browse/trunk/scripts/pump.py). It is still |
||||
very unpolished and lacks automated tests, although it has been |
||||
successfully used many times. If you find a chance to use it in your |
||||
project, please let us know what you think! We also welcome help on |
||||
improving Pump. |
||||
|
||||
## Real Examples ## |
||||
|
||||
You can find real-world applications of Pump in [Google Test](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgoogletest\.googlecode\.com) and [Google Mock](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgooglemock\.googlecode\.com). The source file `foo.h.pump` generates `foo.h`. |
||||
|
||||
## Tips ## |
||||
|
||||
* If a meta variable is followed by a letter or digit, you can separate them using `[[]]`, which inserts an empty string. For example `Foo$j[[]]Helper` generate `Foo1Helper` when `j` is 1. |
||||
* To avoid extra-long Pump source lines, you can break a line anywhere you want by inserting `[[]]` followed by a new line. Since any new-line character next to `[[` or `]]` is ignored, the generated code won't contain this new line. |
@ -0,0 +1,14 @@ |
||||
If you're like us, you'd like to look at some Google Test sample code. The |
||||
[samples folder](http://code.google.com/p/googletest/source/browse/#svn/trunk/samples) has a number of well-commented samples showing how to use a |
||||
variety of Google Test features. |
||||
|
||||
* [Sample #1](http://code.google.com/p/googletest/source/browse/trunk/samples/sample1_unittest.cc) shows the basic steps of using Google Test to test C++ functions. |
||||
* [Sample #2](http://code.google.com/p/googletest/source/browse/trunk/samples/sample2_unittest.cc) shows a more complex unit test for a class with multiple member functions. |
||||
* [Sample #3](http://code.google.com/p/googletest/source/browse/trunk/samples/sample3_unittest.cc) uses a test fixture. |
||||
* [Sample #4](http://code.google.com/p/googletest/source/browse/trunk/samples/sample4_unittest.cc) is another basic example of using Google Test. |
||||
* [Sample #5](http://code.google.com/p/googletest/source/browse/trunk/samples/sample5_unittest.cc) teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it. |
||||
* [Sample #6](http://code.google.com/p/googletest/source/browse/trunk/samples/sample6_unittest.cc) demonstrates type-parameterized tests. |
||||
* [Sample #7](http://code.google.com/p/googletest/source/browse/trunk/samples/sample7_unittest.cc) teaches the basics of value-parameterized tests. |
||||
* [Sample #8](http://code.google.com/p/googletest/source/browse/trunk/samples/sample8_unittest.cc) shows using `Combine()` in value-parameterized tests. |
||||
* [Sample #9](http://code.google.com/p/googletest/source/browse/trunk/samples/sample9_unittest.cc) shows use of the listener API to modify Google Test's console output and the use of its reflection API to inspect test results. |
||||
* [Sample #10](http://code.google.com/p/googletest/source/browse/trunk/samples/sample10_unittest.cc) shows use of the listener API to implement a primitive memory leak checker. |
@ -0,0 +1,93 @@ |
||||
|
||||
|
||||
This guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X. This tutorial begins by quickly explaining what to do for experienced users. After the quick start, the guide goes provides additional explanation about each step. |
||||
|
||||
# Quick Start # |
||||
|
||||
Here is the quick guide for using Google Test in your Xcode project. |
||||
|
||||
1. Download the source from the [website](http://code.google.com/p/googletest) using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only` |
||||
1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtest.framework. |
||||
1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests" |
||||
1. Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build phase of "UnitTests" |
||||
1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests" |
||||
1. Edit the "UnitTests" executable and add an environment variable named "DYLD\_FRAMEWORK\_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. |
||||
1. Build and Go |
||||
|
||||
The following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations. |
||||
|
||||
# Get the Source # |
||||
|
||||
Currently, the gtest.framework discussed here isn't available in a tagged release of Google Test, it is only available in the trunk. As explained at the Google Test [site](http://code.google.com/p/googletest/source/checkout">svn), you can get the code from anonymous SVN with this command: |
||||
|
||||
``` |
||||
svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only |
||||
``` |
||||
|
||||
Alternatively, if you are working with Subversion in your own code base, you can add Google Test as an external dependency to your own Subversion repository. By following this approach, everyone that checks out your svn repository will also receive a copy of Google Test (a specific version, if you wish) without having to check it out explicitly. This makes the set up of your project simpler and reduces the copied code in the repository. |
||||
|
||||
To use `svn:externals`, decide where you would like to have the external source reside. You might choose to put the external source inside the trunk, because you want it to be part of the branch when you make a release. However, keeping it outside the trunk in a version-tagged directory called something like `third-party/googletest/1.0.1`, is another option. Once the location is established, use `svn propedit svn:externals _directory_` to set the svn:externals property on a directory in your repository. This directory won't contain the code, but be its versioned parent directory. |
||||
|
||||
The command `svn propedit` will bring up your Subversion editor, making editing the long, (potentially multi-line) property simpler. This same method can be used to check out a tagged branch, by using the appropriate URL (e.g. `http://googletest.googlecode.com/svn/tags/release-1.0.1`). Additionally, the svn:externals property allows the specification of a particular revision of the trunk with the `-r_##_` option (e.g. `externals/src/googletest -r60 http://googletest.googlecode.com/svn/trunk`). |
||||
|
||||
Here is an example of using the svn:externals properties on a trunk (read via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/externals/src/googletest/` directory. |
||||
|
||||
``` |
||||
[Computer:svn] user$ svn propget svn:externals trunk |
||||
externals/src/googletest http://googletest.googlecode.com/svn/trunk |
||||
``` |
||||
|
||||
# Add the Framework to Your Project # |
||||
|
||||
The next step is to build and add the gtest.framework to your own project. This guide describes two common ways below. |
||||
|
||||
* **Option 1** --- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test trunk) and build the framework manually. Then, add the built framework into your project using the "Add->Existing Framework..." from the context menu or "Project->Add..." from the main menu. The gtest.framework is relocatable and contains the headers and object code that you'll need to make tests. This method requires rebuilding every time you upgrade Google Test in your project. |
||||
* **Option 2** --- If you are going to be living off the trunk of Google Test, incorporating its latest features into your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework every time the source updates. to do this, you'll need to add the gtest.xcodeproj file, not the framework itself, to your own Xcode project. Then, from the build products that are revealed by the project's disclosure triangle, you can find the gtest.framework, which can be added to your targets (discussed below). |
||||
|
||||
# Make a Test Target # |
||||
|
||||
To start writing tests, make a new "Shell Tool" target. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" build phase of the target. |
||||
|
||||
Next, you'll want to add gtest.framework in two different ways, depending upon which option you chose above. |
||||
|
||||
* **Option 1** --- During compilation, Xcode will need to know that you are linking against the gtest.framework. Add the gtest.framework to the "Link Binary with Libraries" build phase of your test target. This will include the Google Test headers in your header search path, and will tell the linker where to find the library. |
||||
* **Option 2** --- If your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary with Libraries" build phase of your test target. In addition, you'll want to add the gtest.framework as a dependency to your unit test target. This way, Xcode will make sure that gtest.framework is up to date, every time your build your target. Finally, if you don't share build directories with Google Test, you'll have to copy the gtest.framework into your own build products directory using a "Run Script" build phase. |
||||
|
||||
# Set Up the Executable Run Environment # |
||||
|
||||
Since the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Frameworks` directory, in which to place gtest.framework. Instead, the dynamic linker must be told at runtime to search for the framework in another location. This can be accomplished by setting the "DYLD\_FRAMEWORK\_PATH" environment variable in the "Edit Active Executable ..." Arguments tab, under "Variables to be set in the environment:". The path for this value is the path (relative or absolute) of the directory containing the gtest.framework. |
||||
|
||||
If you haven't set up the DYLD\_FRAMEWORK\_PATH, correctly, you might get a message like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-15 06:23:57 -0600.] |
||||
dyld: Library not loaded: @loader_path/../Frameworks/gtest.framework/Versions/A/gtest |
||||
Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest |
||||
Reason: image not found |
||||
``` |
||||
|
||||
To correct this problem, got to the directory containing the executable named in "Referenced from:" value in the error message above. Then, with the terminal in this location, find the relative path to the directory containing the gtest.framework. That is the value you'll need to set as the DYLD\_FRAMEWORK\_PATH. |
||||
|
||||
# Build and Go # |
||||
|
||||
Now, when you click "Build and Go", the test will be executed. Dumping out something like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-06 06:36:13 -0600.] |
||||
[==========] Running 2 tests from 1 test case. |
||||
[----------] Global test environment set-up. |
||||
[----------] 2 tests from WidgetInitializerTest |
||||
[ RUN ] WidgetInitializerTest.TestConstructor |
||||
[ OK ] WidgetInitializerTest.TestConstructor |
||||
[ RUN ] WidgetInitializerTest.TestConversion |
||||
[ OK ] WidgetInitializerTest.TestConversion |
||||
[----------] Global test environment tear-down |
||||
[==========] 2 tests from 1 test case ran. |
||||
[ PASSED ] 2 tests. |
||||
|
||||
The Debugger has exited with status 0. |
||||
``` |
||||
|
||||
# Summary # |
||||
|
||||
Unit testing is a valuable way to ensure your data model stays valid even during rapid development or refactoring. The Google Testing Framework is a great unit testing framework for C and C++ which integrates well with an Xcode development environment. |
@ -0,0 +1,93 @@ |
||||
|
||||
|
||||
This guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X. This tutorial begins by quickly explaining what to do for experienced users. After the quick start, the guide goes provides additional explanation about each step. |
||||
|
||||
# Quick Start # |
||||
|
||||
Here is the quick guide for using Google Test in your Xcode project. |
||||
|
||||
1. Download the source from the [website](http://code.google.com/p/googletest) using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only` |
||||
1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtest.framework. |
||||
1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests" |
||||
1. Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build phase of "UnitTests" |
||||
1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests" |
||||
1. Edit the "UnitTests" executable and add an environment variable named "DYLD\_FRAMEWORK\_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. |
||||
1. Build and Go |
||||
|
||||
The following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations. |
||||
|
||||
# Get the Source # |
||||
|
||||
Currently, the gtest.framework discussed here isn't available in a tagged release of Google Test, it is only available in the trunk. As explained at the Google Test [site](http://code.google.com/p/googletest/source/checkout">svn), you can get the code from anonymous SVN with this command: |
||||
|
||||
``` |
||||
svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only |
||||
``` |
||||
|
||||
Alternatively, if you are working with Subversion in your own code base, you can add Google Test as an external dependency to your own Subversion repository. By following this approach, everyone that checks out your svn repository will also receive a copy of Google Test (a specific version, if you wish) without having to check it out explicitly. This makes the set up of your project simpler and reduces the copied code in the repository. |
||||
|
||||
To use `svn:externals`, decide where you would like to have the external source reside. You might choose to put the external source inside the trunk, because you want it to be part of the branch when you make a release. However, keeping it outside the trunk in a version-tagged directory called something like `third-party/googletest/1.0.1`, is another option. Once the location is established, use `svn propedit svn:externals _directory_` to set the svn:externals property on a directory in your repository. This directory won't contain the code, but be its versioned parent directory. |
||||
|
||||
The command `svn propedit` will bring up your Subversion editor, making editing the long, (potentially multi-line) property simpler. This same method can be used to check out a tagged branch, by using the appropriate URL (e.g. `http://googletest.googlecode.com/svn/tags/release-1.0.1`). Additionally, the svn:externals property allows the specification of a particular revision of the trunk with the `-r_##_` option (e.g. `externals/src/googletest -r60 http://googletest.googlecode.com/svn/trunk`). |
||||
|
||||
Here is an example of using the svn:externals properties on a trunk (read via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/externals/src/googletest/` directory. |
||||
|
||||
``` |
||||
[Computer:svn] user$ svn propget svn:externals trunk |
||||
externals/src/googletest http://googletest.googlecode.com/svn/trunk |
||||
``` |
||||
|
||||
# Add the Framework to Your Project # |
||||
|
||||
The next step is to build and add the gtest.framework to your own project. This guide describes two common ways below. |
||||
|
||||
* **Option 1** --- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test trunk) and build the framework manually. Then, add the built framework into your project using the "Add->Existing Framework..." from the context menu or "Project->Add..." from the main menu. The gtest.framework is relocatable and contains the headers and object code that you'll need to make tests. This method requires rebuilding every time you upgrade Google Test in your project. |
||||
* **Option 2** --- If you are going to be living off the trunk of Google Test, incorporating its latest features into your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework every time the source updates. to do this, you'll need to add the gtest.xcodeproj file, not the framework itself, to your own Xcode project. Then, from the build products that are revealed by the project's disclosure triangle, you can find the gtest.framework, which can be added to your targets (discussed below). |
||||
|
||||
# Make a Test Target # |
||||
|
||||
To start writing tests, make a new "Shell Tool" target. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" build phase of the target. |
||||
|
||||
Next, you'll want to add gtest.framework in two different ways, depending upon which option you chose above. |
||||
|
||||
* **Option 1** --- During compilation, Xcode will need to know that you are linking against the gtest.framework. Add the gtest.framework to the "Link Binary with Libraries" build phase of your test target. This will include the Google Test headers in your header search path, and will tell the linker where to find the library. |
||||
* **Option 2** --- If your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary with Libraries" build phase of your test target. In addition, you'll want to add the gtest.framework as a dependency to your unit test target. This way, Xcode will make sure that gtest.framework is up to date, every time your build your target. Finally, if you don't share build directories with Google Test, you'll have to copy the gtest.framework into your own build products directory using a "Run Script" build phase. |
||||
|
||||
# Set Up the Executable Run Environment # |
||||
|
||||
Since the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Frameworks` directory, in which to place gtest.framework. Instead, the dynamic linker must be told at runtime to search for the framework in another location. This can be accomplished by setting the "DYLD\_FRAMEWORK\_PATH" environment variable in the "Edit Active Executable ..." Arguments tab, under "Variables to be set in the environment:". The path for this value is the path (relative or absolute) of the directory containing the gtest.framework. |
||||
|
||||
If you haven't set up the DYLD\_FRAMEWORK\_PATH, correctly, you might get a message like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-15 06:23:57 -0600.] |
||||
dyld: Library not loaded: @loader_path/../Frameworks/gtest.framework/Versions/A/gtest |
||||
Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest |
||||
Reason: image not found |
||||
``` |
||||
|
||||
To correct this problem, got to the directory containing the executable named in "Referenced from:" value in the error message above. Then, with the terminal in this location, find the relative path to the directory containing the gtest.framework. That is the value you'll need to set as the DYLD\_FRAMEWORK\_PATH. |
||||
|
||||
# Build and Go # |
||||
|
||||
Now, when you click "Build and Go", the test will be executed. Dumping out something like this: |
||||
|
||||
``` |
||||
[Session started at 2008-08-06 06:36:13 -0600.] |
||||
[==========] Running 2 tests from 1 test case. |
||||
[----------] Global test environment set-up. |
||||
[----------] 2 tests from WidgetInitializerTest |
||||
[ RUN ] WidgetInitializerTest.TestConstructor |
||||
[ OK ] WidgetInitializerTest.TestConstructor |
||||
[ RUN ] WidgetInitializerTest.TestConversion |
||||
[ OK ] WidgetInitializerTest.TestConversion |
||||
[----------] Global test environment tear-down |
||||
[==========] 2 tests from 1 test case ran. |
||||
[ PASSED ] 2 tests. |
||||
|
||||
The Debugger has exited with status 0. |
||||
``` |
||||
|
||||
# Summary # |
||||
|
||||
Unit testing is a valuable way to ensure your data model stays valid even during rapid development or refactoring. The Google Testing Framework is a great unit testing framework for C and C++ which integrates well with an Xcode development environment. |
Loading…
Reference in new issue