2016-12-07 16:38:26 -05:00
|
|
|
package scanner;
|
|
|
|
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
|
|
|
|
import org.junit.Before;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
public class LispFilterStreamTester {
|
|
|
|
|
|
|
|
private LispFilterStream lispFilterStream;
|
2016-12-07 16:40:08 -05:00
|
|
|
|
2016-12-07 16:38:26 -05:00
|
|
|
@Before
|
|
|
|
public void setUp() throws Exception {
|
|
|
|
lispFilterStream = new LispFilterStream(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testRead() {
|
|
|
|
fail("Not yet implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|