chromium/chrome/test/data/webui/chromeos/settings/os_apps_page/app_parental_controls_page/test_utils.ts

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import {appParentalControlsHandlerMojom} from 'chrome://os-settings/os_settings.js';

/**
 * Creates an app for testing purpose.
 */
export function createApp(id: string, title: string, isBlocked: boolean):
    appParentalControlsHandlerMojom.App {
  return {id, title, isBlocked};
}