aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--BUILD.bazel3
-rw-r--r--googlemock/test/BUILD25
-rw-r--r--googletest/samples/sample3_unittest.cc2
-rw-r--r--googletest/test/BUILD.bazel2
4 files changed, 3 insertions, 29 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 1d2f6b87..dba50cc9 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -120,4 +120,5 @@ cc_test(
deps = [
":gtest",
],
-) \ No newline at end of file
+)
+git \ No newline at end of file
diff --git a/googlemock/test/BUILD b/googlemock/test/BUILD
deleted file mode 100644
index ca597002..00000000
--- a/googlemock/test/BUILD
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2017 Google Inc. All Rights Reserved.
-# Author: misterg@google.com (Gennadiy Civil)
-#
-# Description:
-# Bazel BUILD file for googletest-googlemock, initial revision
-#
-
-""" gmock own tests """
-
-cc_test(
- name = "gmock_all_test",
- size = "small",
- srcs = glob(
- include = [
- "gmock-*.cc",
- ],
- ),
- linkopts = select({
- "//:win": [],
- "//conditions:default": [
- "-pthread",
- ],
- }),
- deps = ["//:gtest"],
-)
diff --git a/googletest/samples/sample3_unittest.cc b/googletest/samples/sample3_unittest.cc
index b2f49245..284bb476 100644
--- a/googletest/samples/sample3_unittest.cc
+++ b/googletest/samples/sample3_unittest.cc
@@ -65,7 +65,7 @@
#include "sample3-inl.h"
#include "gtest/gtest.h"
-namespace{
+namespace {
// To use a test fixture, derive a class from testing::Test.
class QueueTestSmpl3 : public testing::Test {
protected: // You should make the members protected s.t. they can be
diff --git a/googletest/test/BUILD.bazel b/googletest/test/BUILD.bazel
index b9837c82..72181222 100644
--- a/googletest/test/BUILD.bazel
+++ b/googletest/test/BUILD.bazel
@@ -112,5 +112,3 @@ cc_test(
"//:gtest",
],
)
-
-