blob: bddd7a036bf8a49b0aeed659381043d1497ac83d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_
#define MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_
#include "base/callback.h"
namespace mojo {
namespace test {
// Run |single_iteration| an appropriate number of times and report its
// performance appropriately. (This actually runs |single_iteration| for a fixed
// amount of time and reports the number of iterations per unit time.)
void IterateAndReportPerf(const char* test_name,
base::Callback<void()> single_iteration);
} // namespace test
} // namespace mojo
#endif // MOJO_PUBLIC_TESTS_TEST_SUPPORT_H_
|