chromium/base/tuple_unittest.cc

// Copyright 2006-2008 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/tuple.h"

#include "testing/gtest/include/gtest/gtest.h"

namespace base {

namespace {

void DoAdd(int a, int b, int c, int* res) {}

struct Addy {};

struct Addz {};

}  // namespace

TEST(TupleTest, Basic) {}

namespace {

struct CopyLogger {};

void SomeLoggerMethRef(const CopyLogger& logy, const CopyLogger* ptr, bool* b) {}

void SomeLoggerMethCopy(CopyLogger logy, const CopyLogger* ptr, bool* b) {}

int CopyLogger::TimesCopied =;
int CopyLogger::TimesConstructed =;

}  // namespace

TEST(TupleTest, Copying) {}

}  // namespace base