Package org.emftrace.emffit.ui.commands.issuecards

Examples of org.emftrace.emffit.ui.commands.issuecards.AddIssueCardInluencingFactorCommand


public class AddIssueCardInluencingFactorCommandTest extends EMFfitTestCase{

  @Test
  public void testDoRun() {
    InfluencingFactor newInfluencingFactor = EMFfitModelFactory.eINSTANCE.createInfluencingFactor();
    new AddIssueCardInluencingFactorCommand(issueCard, newInfluencingFactor).runWithoutUnicaseCommand();
    assertEquals(4, issueCard.getInfluencingFactors().size());
    assertNotNull(issueCard.getInfluencingFactors().get(3).getDescription());
  }
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.ui.commands.issuecards.AddIssueCardInluencingFactorCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.