Merge remote-tracking branch 'origin/GP-1196_ghizard_AbstractGTest_Rule_fix'

This commit is contained in:
Ryan Kurtz
2021-08-11 15:17:44 -04:00
@@ -15,7 +15,8 @@
*/ */
package generic.test; package generic.test;
import static org.junit.Assert.*; import static org.junit.Assert.assertNull;
import static org.junit.Assert.fail;
import java.io.File; import java.io.File;
import java.util.*; import java.util.*;
@@ -26,6 +27,7 @@ import java.util.function.BooleanSupplier;
import java.util.function.Supplier; import java.util.function.Supplier;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Rule;
import org.junit.rules.TestName; import org.junit.rules.TestName;
import ghidra.framework.Application; import ghidra.framework.Application;
@@ -68,6 +70,7 @@ public abstract class AbstractGTest {
private static String testDirectoryPath = createTestDirectoryPath(); private static String testDirectoryPath = createTestDirectoryPath();
@Rule
public TestName testName = new TestName(); public TestName testName = new TestName();
/** /**
@@ -339,7 +342,6 @@ public abstract class AbstractGTest {
return result; return result;
} }
//================================================================================================== //==================================================================================================
// Wait Methods // Wait Methods
//================================================================================================== //==================================================================================================