Skip to content

Commit

Permalink
Added missing TestMethod annotation
Browse files Browse the repository at this point in the history
Signed-off-by: Rajarshi Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Oct 24, 2010
1 parent 6a6c5c4 commit d89e8c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Expand Up @@ -21,6 +21,7 @@
package org.openscience.cdk.tools.diff.tree;

import org.openscience.cdk.annotations.TestClass;
import org.openscience.cdk.annotations.TestMethod;

/**
* Difference between two IChemObjects.
Expand All @@ -31,6 +32,7 @@
@TestClass("org.openscience.cdk.tools.diff.tree.AbstractDifferenceTest")
public abstract class AbstractDifference implements IDifference {

@TestMethod("testConstructor")
protected AbstractDifference() {}

}
Expand Up @@ -37,7 +37,8 @@
public abstract class AbstractDifferenceList implements IDifferenceList {

protected List<IDifference> differences;


@TestMethod("testConstructor")
protected AbstractDifferenceList() {
differences = new ArrayList<IDifference>();
}
Expand Down
Expand Up @@ -37,6 +37,7 @@ public class ChemObjectDifference extends AbstractDifferenceList implements IDif

private String name;

@TestMethod("testToString")
public ChemObjectDifference(String name) {
this.name = name;
}
Expand Down

0 comments on commit d89e8c5

Please sign in to comment.