forked from chibash/stone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path面向对象解释器Test.java
48 lines (39 loc) · 1.52 KB
/
面向对象解释器Test.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package chap9;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import org.junit.Test;
import chap7.嵌套环境类;
import chap8.原生类;
import javassist.gluonj.util.UTester;
import stone.分析例外;
import stone.类语法分析器类;
import stone.util.文件功用;
import stone.util.类路径常量;
import stone.util.解释器功用;
public class 面向对象解释器Test extends 类解释器类 {
private static String 位置类 = "";
private static String 位置类_中文命名 = "";
static {
try {
位置类 = 文件功用.读文件("测试源码/chap9/位置类.txt", StandardCharsets.UTF_8);
位置类_中文命名 = 文件功用.读文件("测试源码/chap9/位置类_中文命名.txt", StandardCharsets.UTF_8);
} catch (IOException e) {
}
}
public static Object 求值(String 源代码) throws 分析例外 {
return 解释器功用.求值(new 类语法分析器类(), new 原生类().环境(new 嵌套环境类()), 源代码);
}
@Test
public void 例程() throws Throwable {
if (UTester.runTestWith(类路径常量.类求值器, 类路径常量.原生求值器, 类路径常量.闭包求值器))
return;
assertEquals(14, 求值(位置类));
}
@Test
public void 中文命名() throws Throwable {
if (UTester.runTestWith(类路径常量.类求值器, 类路径常量.原生求值器, 类路径常量.闭包求值器))
return;
assertEquals(14, 求值(位置类_中文命名));
}
}