I\'m trying to setup google testing framework for my c++ project following this guide in xcode 7.0 I got to the last step Build and Go but after hours of searching online I can\
Sometimes, Xcode cannot find header files in framework. You need additional steps to make it work.
In build settings, complete Framework Search Paths with the path to your framework, which is gtest.framework.
Add the framework path and to User Header Search Paths.
If Xcode cannot find "gtest/internal/gtest-port-arch.h", you can find it in source folder "googletest/googletest/include". Add it to User Header Search Paths.
After these steps, gtest should work in Xcode 7.0.