DocumentPropertyEditorFixture.h 746 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 <AzCore/UnitTest/TestTypes.h>
  10. #include <AzFramework/DocumentPropertyEditor/BasicAdapter.h>
  11. #include <AzFramework/DocumentPropertyEditor/PropertyEditorSystem.h>
  12. namespace AZ::DocumentPropertyEditor::Tests
  13. {
  14. class DocumentPropertyEditorTestFixture
  15. : public UnitTest::LeakDetectionFixture
  16. {
  17. public:
  18. void SetUp() override;
  19. void TearDown() override;
  20. AZStd::unique_ptr<BasicAdapter> m_adapter;
  21. AZStd::unique_ptr<PropertyEditorSystem> m_system;
  22. };
  23. }