// Copyright 2005 Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // ---- // Author: lar@google.com (Laramie Leavitt) // // These tests are really compile time tests. // If you try to step through this in a debugger // you will not see any evaluations, merely that // value is assigned true or false sequentially. #include #include #include namespace GOOGLE_NAMESPACE = google::protobuf::internal; namespace google { namespace protobuf { namespace internal { namespace { TEST(TemplateUtilTest, TestSize) { EXPECT_GT(sizeof(GOOGLE_NAMESPACE::big_), sizeof(GOOGLE_NAMESPACE::small_)); } TEST(TemplateUtilTest, TestIntegralConstants) { // test the built-in types. EXPECT_TRUE(true_type::value); EXPECT_FALSE(false_type::value); typedef integral_constant one_type; EXPECT_EQ(1, one_type::value); } TEST(TemplateUtilTest, TestTemplateIf) { typedef if_::type if_true; EXPECT_TRUE(if_true::value); typedef if_::type if_false; EXPECT_FALSE(if_false::value); } TEST(TemplateUtilTest, TestTemplateTypeEquals) { // Check that the TemplateTypeEquals works correctly. bool value = false; // Test the same type is true. value = type_equals_::value; EXPECT_TRUE(value); // Test different types are false. value = type_equals_::value; EXPECT_FALSE(value); // Test type aliasing. typedef const int foo; value = type_equals_::value; EXPECT_TRUE(value); } TEST(TemplateUtilTest, TestTemplateAndOr) { // Check that the TemplateTypeEquals works correctly. bool value = false; // Yes && Yes == true. value = and_::value; EXPECT_TRUE(value); // Yes && No == false. value = and_::value; EXPECT_FALSE(value); // No && Yes == false. value = and_::value; EXPECT_FALSE(value); // No && No == false. value = and_::value; EXPECT_FALSE(value); // Yes || Yes == true. value = or_::value; EXPECT_TRUE(value); // Yes || No == true. value = or_::value; EXPECT_TRUE(value); // No || Yes == true. value = or_::value; EXPECT_TRUE(value); // No || No == false. value = or_::value; EXPECT_FALSE(value); } TEST(TemplateUtilTest, TestIdentity) { EXPECT_TRUE( (type_equals_::type, int>::value)); EXPECT_TRUE( (type_equals_::type, void>::value)); } } // anonymous namespace } // namespace internal } // namespace protobuf } // namespace google