ScriptCanvasDeveloperTest.cpp 599 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 <AzTest/AzTest.h>
  9. class ScriptCanvasDeveloperTest
  10. : public ::testing::Test
  11. {
  12. protected:
  13. static void SetUpTestCase()
  14. {
  15. }
  16. static void TearDownTestCase()
  17. {
  18. }
  19. void SetUp() override
  20. {
  21. }
  22. void TearDown() override
  23. {
  24. }
  25. };
  26. TEST_F(ScriptCanvasDeveloperTest, Sanity_Pass)
  27. {
  28. EXPECT_TRUE(true);
  29. }
  30. AZ_UNIT_TEST_HOOK();