Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/TestCase.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/TestCase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/TestCase.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/TestCase.java
index 9303058fdab..fef03f98621 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/TestCase.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/TestCase.java
@@ -103,7 +103,7 @@ public abstract class TestCase implements ITestEnvironmentAccessor, Xmlizable, X
private final TestDescriptionRecord testDescription;
@JsonProperty
public int number;
- protected List<RequirementRecord> traceability = new ArrayList<RequirementRecord>();
+ protected List<RequirementRecord> traceability = new ArrayList<>();
/**
* TestCase Constructor.
@@ -129,7 +129,7 @@ public abstract class TestCase implements ITestEnvironmentAccessor, Xmlizable, X
if (addToRunList) {
this.number = testScript.addTestCase(this);
}
- this.testScript = new WeakReference<TestScript>(testScript);
+ this.testScript = new WeakReference<>(testScript);
this.environment = testScript.getTestEnvironment();
GCHelper.getGCHelper().addRefWatch(this);
}
@@ -140,7 +140,7 @@ public abstract class TestCase implements ITestEnvironmentAccessor, Xmlizable, X
// TODO we have two different traceability tags here.... we need to combine these or get rid
// of them all together since define and the artifact framework specifies traceability
// this.tracability = new ArrayList();
- this.traceability = new ArrayList<RequirementRecord>();
+ this.traceability = new ArrayList<>();
this.standAlone = false;
;

Back to the top