Guest User

Untitled

a guest
Nov 23rd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. PROJECT
  2. - classes
  3. tunnelvisionlabs
  4. postgresql
  5. PostgreSqlLexer.class
  6. PostgreSqlLexerAtnSimulator.class
  7. PostgreSqlLexerUtils.class
  8. - lib
  9. antlr-4-7.jar
  10.  
  11. - BasicTest.java
  12.  
  13. package com.tunnelvisionlabs.postgresql.test;
  14.  
  15. import com.tunnelvisionlabs.postgresql.PostgreSqlLexer;
  16. import com.tunnelvisionlabs.postgresql.PostgreSqlLexerUtils;
  17. import java.io.IOException;
  18. import java.io.InputStream;
  19. import java.io.InputStreamReader;
  20. import org.antlr.v4.runtime.ANTLRInputStream;
  21. import org.antlr.v4.runtime.CommonTokenStream;
  22. import org.antlr.v4.runtime.Lexer;
  23. import org.antlr.v4.runtime.Token;
  24. import org.junit.Assert;
  25. import org.junit.Test;
  26.  
  27. javac -cp .:./lib/* BasicTests.java
  28.  
  29. BasicTests.java:28: error: cannot find symbol
  30. import com.tunnelvisionlabs.postgresql.PostgreSqlLexer;
  31. ^
  32. symbol: class PostgreSqlLexer
  33. location: package com.tunnelvisionlabs.postgresql
  34. BasicTests.java:29: error: cannot find symbol
  35. import com.tunnelvisionlabs.postgresql.PostgreSqlLexerUtils;
  36. ^
  37. symbol: class PostgreSqlLexerUtils
  38. location: package com.tunnelvisionlabs.postgresql
  39.  
  40. package com.tunnelvisionlabs.postgresql;
Add Comment
Please, Sign In to add comment