Skip to content
Snippets Groups Projects
Commit db2af743 authored by Nikolaus Huber's avatar Nikolaus Huber
Browse files

renaming

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/code/DMM/trunk@10504 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent 5e287ef1
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ public class DmmModelChangerTest extends AbstractTest {
@Test
public void testScaleInRuntimeEnvironmentInstance() {
RuntimeEnvironment copy = DmmModelChanger.scaleOutRuntimeEnvironmentInstance(original);
RuntimeEnvironment copy = DmmModelChanger.createNewRuntimeEnvironmentInstance(original);
assertFalse(original.getId().equals(copy.getId()));
assertFalse(original.getName().equals(copy.getName()));
......@@ -134,7 +134,7 @@ public class DmmModelChangerTest extends AbstractTest {
@Test
public void testScaleOutRuntimeEnvironmentInstance() {
original.setTemplate(template);
RuntimeEnvironment copy = DmmModelChanger.scaleOutRuntimeEnvironmentInstance(original);
RuntimeEnvironment copy = DmmModelChanger.createNewRuntimeEnvironmentInstance(original);
assertFalse(original.getId().equals(copy.getId()));
assertFalse(original.getName().equals(copy.getName()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment