• Home
  • Raw
  • Download

Lines Matching +full:build +full:- +full:and +full:- +full:test

7 Here is the quick guide for using Google Test in your Xcode project.
9 …using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only`
10 …1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtes…
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"
14 …1. Edit the "UnitTests" executable and add an environment variable named "DYLD\_FRAMEWORK\_PATH" w…
15 1. Build and Go
21 …available in a tagged release of Google Test, it is only available in the trunk. As explained at t…
24 svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only
27Test as an external dependency to your own Subversion repository. By following this approach, ever…
29 …e. However, keeping it outside the trunk in a version-tagged directory called something like `thir…
31-line) property simpler. This same method can be used to check out a tagged branch, by using the a…
33 …d via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/ext…
42 The next step is to build and add the gtest.framework to your own project. This guide describes two…
44--- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in …
45--- If you are going to be living off the trunk of Google Test, incorporating its latest features …
47 # Make a Test Target #
49 …available under BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" bui…
53--- During compilation, Xcode will need to know that you are linking against the gtest.framework. …
54--- If your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary…
58 Since the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Framework…
63 [Session started at 2008-08-15 06:23:57 -0600.]
65 Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest
71 # Build and Go #
73 Now, when you click "Build and Go", the test will be executed. Dumping out something like this:
76 [Session started at 2008-08-06 06:36:13 -0600.]
77 [==========] Running 2 tests from 1 test case.
78 [----------] Global test environment set-up.
79 [----------] 2 tests from WidgetInitializerTest
84 [----------] Global test environment tear-down
85 [==========] 2 tests from 1 test case ran.
93 …ring. The Google Testing Framework is a great unit testing framework for C and C++ which integrate…