Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Gitlab will go in to maintenance on Friday 5:30pm since SIU is doing Isilon maintenance and we use isilon shares on the Gitlab
You are on a read-only GitLab instance.
Show more breadcrumbs
minerva
core
Commits
8f1c6ba2
Commit
8f1c6ba2
authored
6 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
fix on copy command test - reaction requires products/reactants
parent
d3c28890
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!630
WIP: Resolve "The privileges of a new user are not saved in some cases"
,
!472
Resolve "Implement Hibernate naming strategy"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
model-command/src/test/java/lcsb/mapviewer/commands/CopyCommandTest.java
+12
-4
12 additions, 4 deletions
...rc/test/java/lcsb/mapviewer/commands/CopyCommandTest.java
with
12 additions
and
4 deletions
model-command/src/test/java/lcsb/mapviewer/commands/CopyCommandTest.java
+
12
−
4
View file @
8f1c6ba2
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment