Skip to content
Snippets Groups Projects
Commit 8f1c6ba2 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

fix on copy command test - reaction requires products/reactants

parent d3c28890
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!472Resolve "Implement Hibernate naming strategy"
......@@ -10,6 +10,7 @@ import java.awt.geom.Point2D;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import org.junit.After;
import org.junit.Before;
......@@ -321,15 +322,22 @@ public class CopyCommandTest extends CommandTestFunctions {
Model model = new ModelFullIndexed(null);
model.setNotes("Some description");
GenericProtein alias = new GenericProtein("a_id");
alias.setName("ad");
model.addElement(alias);
GenericProtein protein = new GenericProtein("a_id");
protein.setName("ad");
model.addElement(protein);
Layer layer = new Layer();
layer.setName("layer name");
model.addLayer(layer);
model.addReaction(new Reaction());
Reaction reaction = new Reaction();
Product product = new Product(protein);
Reactant reactant = new Reactant(protein);
product.setLine(new PolylineData());
reactant.setLine(new PolylineData());
reaction.addProduct(product);
reaction.addReactant(reactant);
model.addReaction(reaction);
return model;
}
......
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