IntegerPrimtitiveTestConfig.h 611 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.h>
  10. namespace UnitTest
  11. {
  12. // Supported integer types for spinbox control
  13. using IntegerPrimtitiveTestConfigs = ::testing::Types
  14. <
  15. AZ::s8,
  16. AZ::u8,
  17. AZ::s16,
  18. AZ::u16,
  19. AZ::s32,
  20. AZ::u32,
  21. AZ::s64,
  22. AZ::u64
  23. >;
  24. } // namespace UnitTest