platformconfigurationtests.h 825 B

123456789101112131415161718192021222324252627282930313233343536
  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 <AzTest/AzTest.h>
  10. #include <QCoreApplication>
  11. #include <native/tests/AssetProcessorTest.h>
  12. #include <native/unittests/UnitTestUtils.h>
  13. #include <native/utilities/PlatformConfiguration.h>
  14. #include <AssetManager/FileStateCache.h>
  15. class PlatformConfigurationUnitTests
  16. : public AssetProcessor::AssetProcessorTest
  17. {
  18. public:
  19. PlatformConfigurationUnitTests();
  20. virtual ~PlatformConfigurationUnitTests()
  21. {
  22. }
  23. protected:
  24. void SetUp() override;
  25. void TearDown() override;
  26. private:
  27. int m_argc;
  28. char** m_argv;
  29. QCoreApplication* m_qApp;
  30. };