File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
jme3-core/src/test/java/com/jme3/effect/influencers Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ public void testNewtonianParticleInfluencer() {
3030
3131 NewtonianParticleInfluencer clone = (NewtonianParticleInfluencer ) inf .clone ();
3232 assertEquals (inf , clone );
33+ Assert .assertNotSame (inf .temp , clone .temp );
3334
3435 NewtonianParticleInfluencer copy = BinaryExporter .saveAndLoad (assetManager , inf );
3536 assertEquals (inf , copy );
@@ -59,6 +60,7 @@ public void testRadialParticleInfluencer() {
5960
6061 RadialParticleInfluencer clone = (RadialParticleInfluencer ) inf .clone ();
6162 assertEquals (inf , clone );
63+ Assert .assertNotSame (inf .temp , clone .temp );
6264
6365 RadialParticleInfluencer copy = BinaryExporter .saveAndLoad (assetManager , inf );
6466 assertEquals (inf , copy );
You can’t perform that action at this time.
0 commit comments