mirror of
https://github.com/google/googletest.git
synced 2024-12-29 03:33:40 +08:00
Merge branch 'master' into mingw64-appveyour
This commit is contained in:
commit
8282229d4f
2
.gitignore
vendored
2
.gitignore
vendored
@ -8,3 +8,5 @@ bazel-genfiles
|
|||||||
bazel-googletest
|
bazel-googletest
|
||||||
bazel-out
|
bazel-out
|
||||||
bazel-testlogs
|
bazel-testlogs
|
||||||
|
# python
|
||||||
|
*.pyc
|
2
googletest/.gitignore
vendored
2
googletest/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
# python
|
|
||||||
*.pyc
|
|
@ -1034,7 +1034,7 @@ namespace bar {
|
|||||||
TEST(CoolTest, DoSomething) {
|
TEST(CoolTest, DoSomething) {
|
||||||
SUCCEED();
|
SUCCEED();
|
||||||
}
|
}
|
||||||
} // namespace foo
|
} // namespace bar
|
||||||
```
|
```
|
||||||
|
|
||||||
However, the following code is **not allowed** and will produce a runtime error from Google Test because the test methods are using different test fixture classes with the same test case name.
|
However, the following code is **not allowed** and will produce a runtime error from Google Test because the test methods are using different test fixture classes with the same test case name.
|
||||||
@ -1052,7 +1052,7 @@ class CoolTest : public ::testing::Test {}; // Fixture: bar::CoolTest
|
|||||||
TEST_F(CoolTest, DoSomething) {
|
TEST_F(CoolTest, DoSomething) {
|
||||||
SUCCEED();
|
SUCCEED();
|
||||||
}
|
}
|
||||||
} // namespace foo
|
} // namespace bar
|
||||||
```
|
```
|
||||||
|
|
||||||
## How do I build Google Testing Framework with Xcode 4? ##
|
## How do I build Google Testing Framework with Xcode 4? ##
|
||||||
|
@ -5,7 +5,6 @@ env | sort
|
|||||||
mkdir build || true
|
mkdir build || true
|
||||||
cd build
|
cd build
|
||||||
cmake -Dgtest_build_samples=ON \
|
cmake -Dgtest_build_samples=ON \
|
||||||
-Dgmock_build_samples=ON \
|
|
||||||
-Dgtest_build_tests=ON \
|
-Dgtest_build_tests=ON \
|
||||||
-Dgmock_build_tests=ON \
|
-Dgmock_build_tests=ON \
|
||||||
-DCMAKE_CXX_FLAGS=$CXX_FLAGS \
|
-DCMAKE_CXX_FLAGS=$CXX_FLAGS \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user