Browse Source

Change .t.h files (CXXTestGen) to _test.cxx (GTest).
TODO: Convert Includes
TODO: Order Includes
TODO: Switch to using Gtest

Sam Jaffe 5 years ago
parent
commit
29da475ba5

+ 10 - 17
pointers.xcodeproj/project.pbxproj

@@ -6,10 +6,6 @@
 	objectVersion = 46;
 	objects = {
 
-/* Begin PBXBuildFile section */
-		CDC3B0E61DF26319002A415B /* pointers_tc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDC3B0E51DF26319002A415B /* pointers_tc.cpp */; };
-/* End PBXBuildFile section */
-
 /* Begin PBXContainerItemProxy section */
 		CDEC1DCC2351677C0091D9F2 /* PBXContainerItemProxy */ = {
 			isa = PBXContainerItemProxy;
@@ -54,13 +50,12 @@
 /* End PBXCopyFilesBuildPhase section */
 
 /* Begin PBXFileReference section */
-		CD0364691E1F3F0B003B7B84 /* const_propogating_ptr.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const_propogating_ptr.t.h; sourceTree = "<group>"; };
-		CD03646A1E1F41DE003B7B84 /* const_ptr.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const_ptr.t.h; sourceTree = "<group>"; };
-		CD03646B1E1F42A1003B7B84 /* value_ptr.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = value_ptr.t.h; sourceTree = "<group>"; };
+		CD0364691E1F3F0B003B7B84 /* const_propogating_ptr_test.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = const_propogating_ptr_test.cxx; sourceTree = "<group>"; };
+		CD03646A1E1F41DE003B7B84 /* const_ptr_test.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = const_ptr_test.cxx; sourceTree = "<group>"; };
+		CD03646B1E1F42A1003B7B84 /* value_ptr_test.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = value_ptr_test.cxx; sourceTree = "<group>"; };
 		CD3DA3F21D9B42BC001B53A0 /* pointers_tc */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = pointers_tc; sourceTree = BUILT_PRODUCTS_DIR; };
-		CDC3B0E31DF261D7002A415B /* not_null.t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = not_null.t.h; sourceTree = "<group>"; };
-		CDC3B0E51DF26319002A415B /* pointers_tc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pointers_tc.cpp; sourceTree = "<group>"; };
-		CDC3B0E71DF263B2002A415B /* maybe_null.t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maybe_null.t.h; sourceTree = "<group>"; };
+		CDC3B0E31DF261D7002A415B /* not_null_test.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = not_null_test.cxx; sourceTree = "<group>"; };
+		CDC3B0E71DF263B2002A415B /* maybe_null_test.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = maybe_null_test.cxx; sourceTree = "<group>"; };
 		CDCB3C2F24E453E30029B771 /* pointer */ = {isa = PBXFileReference; lastKnownFileType = folder; name = pointer; path = include/pointer; sourceTree = "<group>"; };
 		CDEC1DC52351677C0091D9F2 /* GoogleMock.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = GoogleMock.xcodeproj; path = "../../../gmock-xcode-master/GoogleMock.xcodeproj"; sourceTree = "<group>"; };
 /* End PBXFileReference section */
@@ -79,12 +74,11 @@
 		CD125DDB1E1F27E000B53FB5 /* test */ = {
 			isa = PBXGroup;
 			children = (
-				CD0364691E1F3F0B003B7B84 /* const_propogating_ptr.t.h */,
-				CD03646A1E1F41DE003B7B84 /* const_ptr.t.h */,
-				CD03646B1E1F42A1003B7B84 /* value_ptr.t.h */,
-				CDC3B0E31DF261D7002A415B /* not_null.t.h */,
-				CDC3B0E71DF263B2002A415B /* maybe_null.t.h */,
-				CDC3B0E51DF26319002A415B /* pointers_tc.cpp */,
+				CD0364691E1F3F0B003B7B84 /* const_propogating_ptr_test.cxx */,
+				CD03646A1E1F41DE003B7B84 /* const_ptr_test.cxx */,
+				CD03646B1E1F42A1003B7B84 /* value_ptr_test.cxx */,
+				CDC3B0E31DF261D7002A415B /* not_null_test.cxx */,
+				CDC3B0E71DF263B2002A415B /* maybe_null_test.cxx */,
 			);
 			path = test;
 			sourceTree = "<group>";
@@ -235,7 +229,6 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				CDC3B0E61DF26319002A415B /* pointers_tc.cpp in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};

test/const_propogating_ptr.t.h → test/const_propogating_ptr_test.cxx


test/const_ptr.t.h → test/const_ptr_test.cxx


test/maybe_null.t.h → test/maybe_null_test.cxx


test/not_null.t.h → test/not_null_test.cxx


test/value_ptr.t.h → test/value_ptr_test.cxx