chromium/mojo/public/tests/test_support_private.cc

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

#include "mojo/public/tests/test_support_private.h"

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

static mojo::test::TestSupport* g_test_support =;

extern "C" {

void MojoTestSupportLogPerfResult(const char* test_name,
                                  const char* sub_test_name,
                                  double value,
                                  const char* units) {}

FILE* MojoTestSupportOpenSourceRootRelativeFile(const char* relative_path) {}

char** MojoTestSupportEnumerateSourceRootRelativeDirectory(
    const char* relative_path) {}

}  // extern "C"

namespace mojo {
namespace test {

TestSupport::~TestSupport() {}

// static
void TestSupport::Init(TestSupport* test_support) {}

// static
TestSupport* TestSupport::Get() {}

// static
void TestSupport::Reset() {}

}  // namespace test
}  // namespace mojo