[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / fuchsia_component_support / mock_realm.cc
1 // Copyright 2023 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/fuchsia_component_support/mock_realm.h"
6
7 #include "testing/gtest/include/gtest/gtest.h"
8
9 namespace fuchsia_component_support {
10
11 MockRealm::MockRealm(sys::OutgoingDirectory* outgoing)
12     : binding_(outgoing, this) {}
13
14 MockRealm::~MockRealm() = default;
15
16 void MockRealm::NotImplemented_(const std::string& name) {
17   ADD_FAILURE() << "NotImplemented_: " << name;
18 }
19
20 }  // namespace fuchsia_component_support