Okay, I added some entries to those arrays. It still doesn’t work.
IMPLEMENT_COMPLEX_AUTOMATION_TEST(FTestItShowsUp, “MyGame.TestItShowsUp”, EAutomationTestFlags::ApplicationContextMask | EAutomationTestFlags::SmokeFilter)
void FTestItShowsUp::GetTests(TArray& OutBeautifiedNames, TArray & OutTestCommands) const
{
OutBeautifiedNames.Add(FString(“See1”));
OutBeautifiedNames.Add(FString(“See2”));
OutBeautifiedNames.Add(FString(“See3”));
OutTestCommands.Add(FString(“See1”));
OutTestCommands.Add(FString(“See2”));
OutTestCommands.Add(FString(“See3”));
}
bool FTestItShowsUp::RunTest(const FString& Parameters)
{
return true;
}