23 lines
391 B
Java
23 lines
391 B
Java
package scanner;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
public class LispFilterStreamTester {
|
|
|
|
private LispFilterStream lispFilterStream;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
lispFilterStream = new LispFilterStream(null);
|
|
}
|
|
|
|
@Test
|
|
public void testRead() {
|
|
fail("Not yet implemented");
|
|
}
|
|
|
|
}
|