Skip to content

Commit

Permalink
Added missing test annotation
Browse files Browse the repository at this point in the history
Change-Id: I66318bc6a324de0ed0bb42182e99238896bf2db8
  • Loading branch information
egonw committed Oct 31, 2012
1 parent 74d206e commit bbf00f6
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -67,12 +67,14 @@ public void setBuilder(IChemObjectBuilder builder) {

/** {@inheritDoc} */
@Override
@TestMethod("testBuilder")
public IChemObjectBuilder getBuilder() {
return this.builder;
}

/** {@inheritDoc} */
@Override
@TestMethod("testGetBonds")
public IBond[] getBonds() {
IBond[] arrayCopy = new IBond[2];
System.arraycopy(ligandBonds, 0, arrayCopy, 0, 2);
Expand All @@ -81,12 +83,14 @@ public IBond[] getBonds() {

/** {@inheritDoc} */
@Override
@TestMethod("testGetStereoBond")
public IBond getStereoBond() {
return this.stereoBond;
}

/** {@inheritDoc} */
@Override
@TestMethod("testGetStereo")
public Conformation getStereo() {
return this.stereo;
}
Expand Down

0 comments on commit bbf00f6

Please sign in to comment.