/**
 * Copyright (c) 2025 Huawei Technologies Co., Ltd.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

import {Settings} from 'react-native';
import {TestSuite} from '@rnoh/testerino';
import {TestCase} from '../components/TestCase';

export function SettingsTest() {
  return (
    <TestSuite name="Settings">
      <TestCase.Logical
        itShould="not throw error"
        fn={() => {
          Settings.get('foobar');
        }}
      />
    </TestSuite>
  );
}