From 9b632b59808bbdb5b88e96a65fc743837c80feea Mon Sep 17 00:00:00 2001 From: shiqian Date: Fri, 13 Jun 2008 18:01:11 +0000 Subject: [PATCH] Edited wiki page through web user interface. --- wiki/GoogleTestPrimer.wiki | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wiki/GoogleTestPrimer.wiki b/wiki/GoogleTestPrimer.wiki index 73bde64c3..b7a0c3019 100644 --- a/wiki/GoogleTestPrimer.wiki +++ b/wiki/GoogleTestPrimer.wiki @@ -8,8 +8,7 @@ _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. And it supports _any_ kind of tests, not just unit -tests. +Google Test can help you. So what makes a good test, and how does Google C++ Testing Framework fit in? We believe: # 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.