Skip to content

Commit 44986a1

Browse files
author
61801
committed
Added 2 unit tests and 1 integration test - fc61801
1 parent c183579 commit 44986a1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package liquidjava.rj_language;
2+
3+
import static org.junit.Assert.assertNotEquals;
4+
import org.junit.Test;
5+
import liquidjava.rj_language.ast.LiteralInt;
6+
7+
ublic class TestLiteralInt {
8+
@Test
9+
public void testToString() {
10+
LiteralInt n = new LiteralInt(61801);
11+
assertEquals("61801", n.toString());
12+
}
13+
}

0 commit comments

Comments
 (0)