Organized imports in several files

This commit is contained in:
Mike Cifelli 2017-02-06 13:44:35 -05:00
parent b6d717ec1c
commit 993df541aa
8 changed files with 12 additions and 22 deletions

View File

@ -1,7 +1,6 @@
package util; package util;
import java.util.HashSet; import java.util.*;
import java.util.Set;
public final class Characters { public final class Characters {

View File

@ -4,8 +4,7 @@ import static org.junit.Assert.assertTrue;
import java.util.Objects; import java.util.Objects;
import org.junit.Before; import org.junit.*;
import org.junit.Test;
public class FilePositionTrackerTester { public class FilePositionTrackerTester {

View File

@ -1,7 +1,7 @@
package function; package function;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static testutil.TestUtilities.*; import static testutil.TestUtilities.assertSExpressionsMatch;
import org.junit.Test; import org.junit.Test;

View File

@ -1,6 +1,6 @@
package function.builtin.predicate; package function.builtin.predicate;
import static testutil.TestUtilities.*; import static testutil.TestUtilities.evaluateString;
import static testutil.TypeAssertions.*; import static testutil.TypeAssertions.*;
import org.junit.Test; import org.junit.Test;

View File

@ -1,16 +1,14 @@
package parser; package parser;
import static org.junit.Assert.*; import static org.junit.Assert.*;
import static testutil.TestUtilities.*;
import static testutil.TypeAssertions.*; import static testutil.TypeAssertions.*;
import static testutil.TestUtilities.createIOExceptionThrowingInputStream;
import static testutil.TestUtilities.createInputStreamFromString;
import java.io.InputStream; import java.io.InputStream;
import org.junit.Test; import org.junit.Test;
import error.ErrorManager; import error.*;
import error.LispException;
import scanner.LispInputStream.UncheckedIOException; import scanner.LispInputStream.UncheckedIOException;
import scanner.LispScanner.UnterminatedStringException; import scanner.LispScanner.UnterminatedStringException;
import token.Eof.EofEncounteredException; import token.Eof.EofEncounteredException;

View File

@ -1,16 +1,14 @@
package scanner; package scanner;
import static org.junit.Assert.*; import static org.junit.Assert.*;
import static testutil.TestUtilities.createIOExceptionThrowingInputStream; import static testutil.TestUtilities.*;
import static testutil.TestUtilities.createInputStreamFromString;
import java.io.InputStream; import java.io.InputStream;
import org.junit.Test; import org.junit.Test;
import error.ErrorManager; import error.ErrorManager;
import scanner.LispInputStream.MaximumUnreadsExceededException; import scanner.LispInputStream.*;
import scanner.LispInputStream.UncheckedIOException;
public class LispCommentRemovingInputStreamTester { public class LispCommentRemovingInputStreamTester {

View File

@ -1,15 +1,12 @@
package scanner; package scanner;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.*;
import static org.junit.Assert.assertTrue;
import static testutil.TestUtilities.createInputStreamFromString; import static testutil.TestUtilities.createInputStreamFromString;
import java.io.InputStream; import java.io.InputStream;
import java.util.ArrayList; import java.util.*;
import java.util.List;
import org.junit.Before; import org.junit.*;
import org.junit.Test;
import error.ErrorManager; import error.ErrorManager;
import scanner.LispScanner.UnterminatedStringException; import scanner.LispScanner.UnterminatedStringException;

View File

@ -2,8 +2,7 @@ package token;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
import org.junit.Before; import org.junit.*;
import org.junit.Test;
import file.FilePosition; import file.FilePosition;
import token.TokenFactory.BadCharacterException; import token.TokenFactory.BadCharacterException;