blob: a73d84aa5989dd2af3a4d8e61e9ef56fd09f5e07 [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef UTILS_FAKE_CLOCK_H_
#define UTILS_FAKE_CLOCK_H_
#include <cstdint>
#include "utils/clock.h"
namespace profiler {
// A fake implementation of |Clock|, useful for tests
class FakeClock final : public Clock {
public:
explicit FakeClock(int64_t fakeTime = 0) : fakeTime_(fakeTime) {}
virtual int64_t GetCurrentTime() const override { return fakeTime_; }
void SetCurrentTime(int64_t time) { fakeTime_ = time; }
void Elapse(int64_t elapsed) { fakeTime_ += elapsed; }
private:
int64_t fakeTime_;
};
} // namespace profiler
#endif // UTILS_FAKE_CLOCK_H_