blob: 850ab8cbd6b11fa39442dc5edb85924a9ec0c23c [file] [log] [blame]
// Copyright 2021 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 <lib/fpromise/promise.h>
#include <lib/fpromise/single_threaded_executor.h>
#include <lib/gtest/real_loop_fixture.h>
#include <gtest/gtest.h>
#include "src/ui/lib/display/get_hardware_display_controller.h"
#include "src/ui/lib/display/hardware_display_controller_provider_impl.h"
namespace ui_display {
namespace test {
struct fake_context : fpromise::context {
fpromise::executor* executor() const override { return nullptr; }
fpromise::suspended_task suspend_task() override { return fpromise::suspended_task(); }
};
class GetHardwareDisplayControllerInjectServicesTest : public gtest::RealLoopFixture {};
// Tests the code path when the service is injected through .cmx file.
TEST_F(GetHardwareDisplayControllerInjectServicesTest, WithInjectedService) {
auto promise = GetHardwareDisplayController();
fake_context context;
EXPECT_FALSE(promise(context).is_error());
}
} // namespace test
} // namespace ui_display