3
0

ShaderBuilderTestFixture.cpp 689 B

123456789101112131415161718192021222324252627282930313233
  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. #include "ShaderBuilderTestFixture.h"
  9. #include <AzCore/Memory/PoolAllocator.h>
  10. #include <AzCore/Name/NameDictionary.h>
  11. #include <AzslShaderBuilderSystemComponent.h>
  12. namespace UnitTest
  13. {
  14. void ShaderBuilderTestFixture::SetUp()
  15. {
  16. LeakDetectionFixture::SetUp();
  17. AZ::NameDictionary::Create();
  18. }
  19. void ShaderBuilderTestFixture::TearDown()
  20. {
  21. AZ::NameDictionary::Destroy();
  22. LeakDetectionFixture::TearDown();
  23. }
  24. }