You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include <AzTest/AzTest.h>
|
|
|
|
class PythonCoverageEditorTest
|
|
: public ::testing::Test
|
|
{
|
|
protected:
|
|
void SetUp() override
|
|
{
|
|
|
|
}
|
|
|
|
void TearDown() override
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
TEST_F(PythonCoverageEditorTest, SanityTest)
|
|
{
|
|
ASSERT_TRUE(true);
|
|
}
|
|
|
|
AZ_UNIT_TEST_HOOK(DEFAULT_UNIT_TEST_ENV);
|