1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-01 23:06:11 -07:00
Abacus/src/test/java/org/nwapw/abacus/tests/LexerTests.java

32 lines
973 B
Java
Raw Normal View History

package org.nwapw.abacus.tests;
2017-07-29 23:48:01 -07:00
import org.junit.Assert;
import org.junit.Test;
import org.nwapw.abacus.lexing.Lexer;
2017-07-29 23:48:01 -07:00
import org.nwapw.abacus.lexing.pattern.Match;
import java.util.List;
public class LexerTests {
2017-07-29 23:48:01 -07:00
@Test
public void testBasicSuccess(){
Lexer<Integer> lexer = new Lexer<>();
lexer.register("abc", 0);
lexer.register("def", 1);
List<Match<Integer>> matchedIntegers = lexer.lexAll("abcdefabc", 0, Integer::compare);
Assert.assertEquals(matchedIntegers.get(0).getType(), Integer.valueOf(0));
Assert.assertEquals(matchedIntegers.get(1).getType(), Integer.valueOf(1));
Assert.assertEquals(matchedIntegers.get(2).getType(), Integer.valueOf(0));
}
@Test
public void testBasicFailure(){
Lexer<Integer> lexer = new Lexer<>();
lexer.register("abc", 0);
lexer.register("def", 1);
Assert.assertNull(lexer.lexAll("abcdefabcz", 0, Integer::compare));
}
}