Skip to content

Commit

Permalink
Renamed methods according to naming coverage testing naming scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Oct 22, 2010
1 parent c755df3 commit f9f9580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/org/openscience/cdk/interfaces/AbstractAtomTest.java
Expand Up @@ -55,14 +55,14 @@ public abstract class AbstractAtomTest extends AbstractAtomTypeTest {
/**
* Method to test the get/setHydrogenCount() methods.
*/
@Test public void testSetHydrogenCount_Integer() {
@Test public void testSetImplicitHydrogenCount_Integer() {
Integer count = 1;

IAtom a = (IAtom)newChemObject();
a.setImplicitHydrogenCount(count);
Assert.assertEquals(count, a.getImplicitHydrogenCount());
}
@Test public void testGetHydrogenCount() {
@Test public void testGetImplicitHydrogenCount() {
// should be null by default
IAtom a = (IAtom)newChemObject();
Assert.assertNull(a.getImplicitHydrogenCount());
Expand Down

0 comments on commit f9f9580

Please sign in to comment.