diff options
Diffstat (limited to 'googletest/samples')
-rw-r--r-- | googletest/samples/prime_tables.h | 6 | ||||
-rw-r--r-- | googletest/samples/sample1.h | 6 | ||||
-rw-r--r-- | googletest/samples/sample2.h | 7 | ||||
-rw-r--r-- | googletest/samples/sample3-inl.h | 6 | ||||
-rw-r--r-- | googletest/samples/sample4.h | 6 |
5 files changed, 16 insertions, 15 deletions
diff --git a/googletest/samples/prime_tables.h b/googletest/samples/prime_tables.h index 3a10352..34002f3 100644 --- a/googletest/samples/prime_tables.h +++ b/googletest/samples/prime_tables.h @@ -33,8 +33,8 @@ // prime and determines a next prime number. This interface is used // in Google Test samples demonstrating use of parameterized tests. -#ifndef GOOGLETEST_SAMPLES_PRIME_TABLES_H_ -#define GOOGLETEST_SAMPLES_PRIME_TABLES_H_ +#ifndef GTEST_SAMPLES_PRIME_TABLES_H_ +#define GTEST_SAMPLES_PRIME_TABLES_H_ #include <algorithm> @@ -123,4 +123,4 @@ class PreCalculatedPrimeTable : public PrimeTable { void operator=(const PreCalculatedPrimeTable& rhs); }; -#endif // GOOGLETEST_SAMPLES_PRIME_TABLES_H_ +#endif // GTEST_SAMPLES_PRIME_TABLES_H_ diff --git a/googletest/samples/sample1.h b/googletest/samples/sample1.h index ba392cf..12e49de 100644 --- a/googletest/samples/sample1.h +++ b/googletest/samples/sample1.h @@ -29,8 +29,8 @@ // A sample program demonstrating using Google C++ testing framework. -#ifndef GOOGLETEST_SAMPLES_SAMPLE1_H_ -#define GOOGLETEST_SAMPLES_SAMPLE1_H_ +#ifndef GTEST_SAMPLES_SAMPLE1_H_ +#define GTEST_SAMPLES_SAMPLE1_H_ // Returns n! (the factorial of n). For negative n, n! is defined to be 1. int Factorial(int n); @@ -38,4 +38,4 @@ int Factorial(int n); // Returns true if and only if n is a prime number. bool IsPrime(int n); -#endif // GOOGLETEST_SAMPLES_SAMPLE1_H_ +#endif // GTEST_SAMPLES_SAMPLE1_H_ diff --git a/googletest/samples/sample2.h b/googletest/samples/sample2.h index 0f98689..e9a5a70 100644 --- a/googletest/samples/sample2.h +++ b/googletest/samples/sample2.h @@ -29,8 +29,8 @@ // A sample program demonstrating using Google C++ testing framework. -#ifndef GOOGLETEST_SAMPLES_SAMPLE2_H_ -#define GOOGLETEST_SAMPLES_SAMPLE2_H_ +#ifndef GTEST_SAMPLES_SAMPLE2_H_ +#define GTEST_SAMPLES_SAMPLE2_H_ #include <string.h> @@ -77,4 +77,5 @@ class MyString { void Set(const char* c_string); }; -#endif // GOOGLETEST_SAMPLES_SAMPLE2_H_ + +#endif // GTEST_SAMPLES_SAMPLE2_H_ diff --git a/googletest/samples/sample3-inl.h b/googletest/samples/sample3-inl.h index 659e0f0..80ba6b9 100644 --- a/googletest/samples/sample3-inl.h +++ b/googletest/samples/sample3-inl.h @@ -29,8 +29,8 @@ // A sample program demonstrating using Google C++ testing framework. -#ifndef GOOGLETEST_SAMPLES_SAMPLE3_INL_H_ -#define GOOGLETEST_SAMPLES_SAMPLE3_INL_H_ +#ifndef GTEST_SAMPLES_SAMPLE3_INL_H_ +#define GTEST_SAMPLES_SAMPLE3_INL_H_ #include <stddef.h> @@ -169,4 +169,4 @@ class Queue { const Queue& operator = (const Queue&); }; -#endif // GOOGLETEST_SAMPLES_SAMPLE3_INL_H_ +#endif // GTEST_SAMPLES_SAMPLE3_INL_H_ diff --git a/googletest/samples/sample4.h b/googletest/samples/sample4.h index 0c4ed92..e256f40 100644 --- a/googletest/samples/sample4.h +++ b/googletest/samples/sample4.h @@ -28,8 +28,8 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // A sample program demonstrating using Google C++ testing framework. -#ifndef GOOGLETEST_SAMPLES_SAMPLE4_H_ -#define GOOGLETEST_SAMPLES_SAMPLE4_H_ +#ifndef GTEST_SAMPLES_SAMPLE4_H_ +#define GTEST_SAMPLES_SAMPLE4_H_ // A simple monotonic counter. class Counter { @@ -50,4 +50,4 @@ class Counter { void Print() const; }; -#endif // GOOGLETEST_SAMPLES_SAMPLE4_H_ +#endif // GTEST_SAMPLES_SAMPLE4_H_ |