Create empty class, getting ready to write tests.

This commit is contained in:
Danila Fedorin 2017-07-29 21:49:36 -07:00
parent d12d53032b
commit 7b2ee1c87a
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package org.nwapw.abacus.tests;
import org.nwapw.abacus.lexing.Lexer;
import org.nwapw.abacus.tree.TokenType;
public class LexerTests {
Lexer<TokenType> lexer = new Lexer<TokenType>(){{
}};
}