transcendental-lisp/test/scanner/LispFilterStreamTester.java

38 lines
671 B
Java
Raw Normal View History

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;
@Before
public void setUp() throws Exception {
lispFilterStream = new LispFilterStream(null);
}
@Test
public void testRead() {
fail("Not yet implemented");
}
@Test
public void testReadByteArrayIntInt() {
fail("Not yet implemented");
}
@Test
public void testSkip() {
fail("Not yet implemented");
}
@Test
public void testLispFilterStream() {
fail("Not yet implemented");
}
}