Skip to content

Commit

Permalink
Minor JavaDoc cleanup
Browse files Browse the repository at this point in the history
Change-Id: I88a234c655532bc69874ff4058142cdb3c7c9547
  • Loading branch information
egonw committed Mar 23, 2013
1 parent 2384708 commit a1bc458
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/test/org/openscience/cdk/DynamicFactoryTest.java
Expand Up @@ -55,15 +55,15 @@
public class DynamicFactoryTest {

/**
* ensure a negative size throws an exception
* Ensure a negative size throws an exception.
*/
@Test(expected = IllegalArgumentException.class)
public void testConstructor() {
new DynamicFactory(-1);
}

/**
* Check we can't register an interface
* Check we can't register an interface.
*/
@Test(expected = IllegalArgumentException.class)
public void testRegister_Interface() throws Exception {
Expand Down Expand Up @@ -253,7 +253,7 @@ public void testOfClass() throws Exception {
}

/**
* Check we get an exception when we try to build from a non-interface
* Check we get an exception when we try to build from a non-interface.
* @throws Exception
*/
@Test(expected = IllegalArgumentException.class)
Expand Down Expand Up @@ -310,7 +310,7 @@ public void testOfClass_WithParams() throws Exception {
}

/**
* Kind of already tested in other methods
* Kind of already tested in other methods.
*/
@Test
public void testSuggest() throws Exception {
Expand Down Expand Up @@ -390,7 +390,7 @@ public void testKey_ArrayParameters() {
}

/**
* Ensures primitive types are converted
* Ensures primitive types are converted.
*/
@Test
public void testKey_Primitives() {
Expand Down Expand Up @@ -462,7 +462,7 @@ public IAtom create(Object[] objects) {

/**
* Test mocks {@link org.openscience.cdk.DynamicFactory.CreationModifier}
* and ensures the modify is called once when a registed implemention is
* and ensures the modify is called once when a registered implementation is
* created.
*/
@Test
Expand Down

0 comments on commit a1bc458

Please sign in to comment.