blob: eed4de965977c56ec5d51645b75c1d4f67022aec [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/developer/debug/zxdb/client/mock_target.h"
#include <lib/syslog/cpp/macros.h>
namespace zxdb {
void MockTarget::SetRunningProcess(Process* process) {
state_ = kRunning;
process_ = process;
}
void MockTarget::Launch(Callback callback) { FX_NOTREACHED(); }
void MockTarget::Kill(Callback callback) { FX_NOTREACHED(); }
void MockTarget::Attach(uint64_t koid, Callback callback) { FX_NOTREACHED(); }
void MockTarget::Detach(Callback callback) { FX_NOTREACHED(); }
void MockTarget::OnProcessExiting(int return_code) { FX_NOTREACHED(); }
} // namespace zxdb