Skip to content

Commit

Permalink
Added a bit of missing test method annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Feb 3, 2012
1 parent 08a06c0 commit d9b1b08
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -32,6 +32,7 @@
import java.io.StringReader;
import java.util.NoSuchElementException;

import org.openscience.cdk.annotations.TestClass;
import org.openscience.cdk.annotations.TestMethod;
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.interfaces.IAtomContainer;
Expand Down Expand Up @@ -81,6 +82,7 @@
* @cdk.keyword file format, MDL molfile
* @cdk.keyword file format, SDF
*/
@TestClass("org.openscience.cdk.io.iterator.IteratingSDFReaderTest")
public class IteratingSDFReader extends DefaultIteratingChemObjectReader<IAtomContainer>
implements IChemObjectIOListener {

Expand Down Expand Up @@ -116,6 +118,7 @@ public IteratingSDFReader(Reader in, IChemObjectBuilder builder) {
* @param in The InputStream to read from
* @param builder The builder
*/
@TestMethod("testReadDataItems")
public IteratingSDFReader(InputStream in, IChemObjectBuilder builder) {
this(new InputStreamReader(in), builder);
}
Expand Down

0 comments on commit d9b1b08

Please sign in to comment.