Lines Matching full:your
3 This guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X.…
7 Here is the quick guide for using Google Test in your Xcode project.
11 1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests"
12 …1. Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build ph…
13 1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests"
27 …your own code base, you can add Google Test as an external dependency to your own Subversion repos…
29 …xternals _directory_` to set the svn:externals property on a directory in your repository. This di…
31 The command `svn propedit` will bring up your Subversion editor, making editing the long, (potentia…
40 # Add the Framework to Your Project #
42 The next step is to build and add the gtest.framework to your own project. This guide describes two…
44 …your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test tru…
45 …your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework ev…
49 …arget. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source co…
53 …Link Binary with Libraries" build phase of your test target. This will include the Google Test hea…
54 …your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary with L…
93 Unit testing is a valuable way to ensure your data model stays valid even during rapid development …