From 64a5c803f3408a5755442bbc34dc4fc43e6502d7 Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Wed, 14 Mar 2018 10:45:10 -0700 Subject: Fixed up proto3_lite_unittest.cc --- src/google/protobuf/proto3_lite_unittest.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/google') diff --git a/src/google/protobuf/proto3_lite_unittest.cc b/src/google/protobuf/proto3_lite_unittest.cc index f5c6084d..8b2c5742 100644 --- a/src/google/protobuf/proto3_lite_unittest.cc +++ b/src/google/protobuf/proto3_lite_unittest.cc @@ -32,13 +32,13 @@ #include #include -#include +#include #include #include #include namespace google { -using proto3_unittest::TestAllTypes; +using proto3_lite_unittest::TestAllTypes; namespace protobuf { namespace { @@ -51,9 +51,9 @@ void SetAllFields(TestAllTypes* m) { m->mutable_optional_nested_message()->set_bb(42); m->mutable_optional_foreign_message()->set_c(43); m->set_optional_nested_enum( - proto3_unittest::TestAllTypes_NestedEnum_BAZ); + proto3_lite_unittest::TestAllTypes_NestedEnum_BAZ); m->set_optional_foreign_enum( - proto3_unittest::FOREIGN_BAZ); + proto3_lite_unittest::FOREIGN_BAZ); m->mutable_optional_lazy_message()->set_bb(45); m->add_repeated_int32(100); m->add_repeated_string("asdf"); @@ -61,9 +61,9 @@ void SetAllFields(TestAllTypes* m) { m->add_repeated_nested_message()->set_bb(46); m->add_repeated_foreign_message()->set_c(47); m->add_repeated_nested_enum( - proto3_unittest::TestAllTypes_NestedEnum_BAZ); + proto3_lite_unittest::TestAllTypes_NestedEnum_BAZ); m->add_repeated_foreign_enum( - proto3_unittest::FOREIGN_BAZ); + proto3_lite_unittest::FOREIGN_BAZ); m->add_repeated_lazy_message()->set_bb(49); m->set_oneof_uint32(1); @@ -79,9 +79,9 @@ void ExpectAllFieldsSet(const TestAllTypes& m) { EXPECT_EQ(42, m.optional_nested_message().bb()); EXPECT_EQ(true, m.has_optional_foreign_message()); EXPECT_EQ(43, m.optional_foreign_message().c()); - EXPECT_EQ(proto3_unittest::TestAllTypes_NestedEnum_BAZ, + EXPECT_EQ(proto3_lite_unittest::TestAllTypes_NestedEnum_BAZ, m.optional_nested_enum()); - EXPECT_EQ(proto3_unittest::FOREIGN_BAZ, + EXPECT_EQ(proto3_lite_unittest::FOREIGN_BAZ, m.optional_foreign_enum()); EXPECT_EQ(true, m.has_optional_lazy_message()); EXPECT_EQ(45, m.optional_lazy_message().bb()); @@ -97,15 +97,15 @@ void ExpectAllFieldsSet(const TestAllTypes& m) { EXPECT_EQ(1, m.repeated_foreign_message_size()); EXPECT_EQ(47, m.repeated_foreign_message(0).c()); EXPECT_EQ(1, m.repeated_nested_enum_size()); - EXPECT_EQ(proto3_unittest::TestAllTypes_NestedEnum_BAZ, + EXPECT_EQ(proto3_lite_unittest::TestAllTypes_NestedEnum_BAZ, m.repeated_nested_enum(0)); EXPECT_EQ(1, m.repeated_foreign_enum_size()); - EXPECT_EQ(proto3_unittest::FOREIGN_BAZ, + EXPECT_EQ(proto3_lite_unittest::FOREIGN_BAZ, m.repeated_foreign_enum(0)); EXPECT_EQ(1, m.repeated_lazy_message_size()); EXPECT_EQ(49, m.repeated_lazy_message(0).bb()); - EXPECT_EQ(proto3_unittest::TestAllTypes::kOneofString, + EXPECT_EQ(proto3_lite_unittest::TestAllTypes::kOneofString, m.oneof_field_case()); EXPECT_EQ("test", m.oneof_string()); } -- cgit v1.2.3