Commit b98e30b4 authored by misterg's avatar misterg
Browse files

Initial Revision, review 164634031

parent 66a03695
......@@ -120,4 +120,5 @@ cc_test(
deps = [
":gtest",
],
)
\ No newline at end of file
)
git
\ No newline at end of file
# 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"],
)
......@@ -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
......
......@@ -112,5 +112,3 @@ cc_test(
"//:gtest",
],
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment