Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added the missing assert: runCoverageTest() returns a boolean stating…
… the success
  • Loading branch information
egonw committed Jun 23, 2010
1 parent e7ccc4e commit 850fd1a
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -18,6 +18,7 @@
*/
package org.openscience.cdk.coverage;

import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;

Expand All @@ -39,7 +40,7 @@ public static void setUp() throws Exception {

@Test
public void testCoverage() {
super.runCoverageTest();
Assert.assertTrue(super.runCoverageTest());
}

}

0 comments on commit 850fd1a

Please sign in to comment.