testmain.cpp 504 B

123456789101112131415161718192021
  1. // {BEGIN_LICENSE}
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. // {END_LICENSE}
  10. #include <AzTest/AzTest.h>
  11. TEST(MyTestSuiteName, ExampleTest)
  12. {
  13. ASSERT_TRUE(true);
  14. }
  15. // If you need to have your own environment preconditions
  16. // you can replace the test env with your own.
  17. AZ_UNIT_TEST_HOOK(DEFAULT_UNIT_TEST_ENV);