Skip to content

Commit 7601f17

Browse files
committed
Made requested changes to imports in test class.
Made style change to isClosed() method
1 parent c77515e commit 7601f17

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

biojava-core/src/test/java/org/biojava/nbio/core/sequence/io/GenbankReaderTest.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@
3030
import org.biojava.nbio.core.sequence.features.FeatureInterface;
3131
import org.biojava.nbio.core.sequence.features.Qualifier;
3232
import org.biojava.nbio.core.sequence.template.AbstractSequence;
33-
import org.junit.*;
33+
import org.junit.After;
34+
import org.junit.AfterClass;
35+
import org.junit.Assert;
36+
import org.junit.Before;
37+
import org.junit.BeforeClass;
38+
import org.junit.Test;
3439
import org.slf4j.Logger;
3540
import org.slf4j.LoggerFactory;
3641

@@ -43,7 +48,11 @@
4348
import java.util.Map;
4449

4550
import static org.hamcrest.CoreMatchers.is;
46-
import static org.junit.Assert.*;
51+
import static org.junit.Assert.assertEquals;
52+
import static org.junit.Assert.assertFalse;
53+
import static org.junit.Assert.assertNotNull;
54+
import static org.junit.Assert.assertThat;
55+
import static org.junit.Assert.assertTrue;
4756

4857
/**
4958
*
@@ -277,7 +286,7 @@ public void close() throws IOException {
277286
closed = true;
278287
}
279288

280-
boolean isclosed(){
289+
boolean isclosed() {
281290
return closed;
282291
}
283292
}

0 commit comments

Comments
 (0)