Formatting changes, code sync
This commit is contained in:
		@@ -33,13 +33,12 @@
 | 
				
			|||||||
// threads concurrently.
 | 
					// threads concurrently.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "gmock/gmock.h"
 | 
					#include "gmock/gmock.h"
 | 
				
			||||||
 | 
					 | 
				
			||||||
#include "gtest/gtest.h"
 | 
					#include "gtest/gtest.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace testing {
 | 
					namespace testing {
 | 
				
			||||||
namespace {
 | 
					namespace {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// From "gtest/internal/gtest-port.h".
 | 
					// From gtest-port.h.
 | 
				
			||||||
using ::testing::internal::ThreadWithParam;
 | 
					using ::testing::internal::ThreadWithParam;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// The maximum number of test threads (not including helper threads)
 | 
					// The maximum number of test threads (not including helper threads)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -34,8 +34,7 @@
 | 
				
			|||||||
// Google Test.  They are subject to change without notice. They should not used
 | 
					// Google Test.  They are subject to change without notice. They should not used
 | 
				
			||||||
// by code external to Google Test.
 | 
					// by code external to Google Test.
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// This header file is #included by
 | 
					// This header file is #included by gtest-internal.h.
 | 
				
			||||||
// gtest/internal/gtest-internal.h.
 | 
					 | 
				
			||||||
// It should not be #included by other files.
 | 
					// It should not be #included by other files.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
 | 
					#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,7 +29,7 @@
 | 
				
			|||||||
//
 | 
					//
 | 
				
			||||||
// Author: wan@google.com (Zhanyong Wan)
 | 
					// Author: wan@google.com (Zhanyong Wan)
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Unit test for gtest/gtest_prod.h.
 | 
					// Unit test for gtest_prod.h.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "production.h"
 | 
					#include "production.h"
 | 
				
			||||||
#include "gtest/gtest.h"
 | 
					#include "gtest/gtest.h"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -35,8 +35,8 @@
 | 
				
			|||||||
#include "gtest/gtest.h"
 | 
					#include "gtest/gtest.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Verifies that the command line flag variables can be accessed in
 | 
					// Verifies that the command line flag variables can be accessed in
 | 
				
			||||||
// code once "gtest/gtest.h" has been
 | 
					// code once "gtest.h" has been #included.
 | 
				
			||||||
// #included.  Do not move it after other gtest #includes.
 | 
					// Do not move it after other gtest #includes.
 | 
				
			||||||
TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) {
 | 
					TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) {
 | 
				
			||||||
  bool dummy = testing::GTEST_FLAG(also_run_disabled_tests)
 | 
					  bool dummy = testing::GTEST_FLAG(also_run_disabled_tests)
 | 
				
			||||||
      || testing::GTEST_FLAG(break_on_failure)
 | 
					      || testing::GTEST_FLAG(break_on_failure)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user